From 94b524d6dc83341ad00c77de1cc5f4ba1a91844c Mon Sep 17 00:00:00 2001 From: Scott Sweeny Date: Tue, 27 Sep 2011 23:54:42 -0400 Subject: [PATCH 01/83] 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 02/83] 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 03/83] 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 04/83] 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 05/83] 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 06/83] 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 07/83] 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 08/83] 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 09/83] 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 10/83] 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 11/83] 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 12/83] 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 13/83] 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 14/83] 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 15/83] 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 16/83] 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 17/83] 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 18/83] 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 19/83] 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 20/83] 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 21/83] 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 22/83] 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 23/83] 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 24/83] 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 25/83] 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 26/83] 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 27/83] 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 28/83] 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 29/83] 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 30/83] 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 31/83] 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 32/83] 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 33/83] 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 34/83] 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 35/83] 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 36/83] 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 37/83] 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 38/83] 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 39/83] 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 40/83] 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 41/83] 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 42/83] 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 43/83] 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 44/83] 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 45/83] 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 46/83] 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 47/83] 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 48/83] 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 49/83] 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 50/83] 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 51/83] 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 52/83] 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 53/83] 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 54/83] 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 55/83] 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 56/83] 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 57/83] 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 58/83] 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 59/83] 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 60/83] 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 61/83] 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 62/83] 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 63/83] 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 64/83] 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 65/83] 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 66/83] 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 67/83] 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 68/83] 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 69/83] 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 70/83] 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 71/83] 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 72/83] 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 73/83] 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 74/83] 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 75/83] 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 76/83] 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 77/83] 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 78/83] 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 79/83] 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 80/83] 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 81/83] 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 82/83] 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 17:14:38 +0100 Subject: [PATCH 83/83] 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"