From: Roland Haeder Date: Fri, 11 Sep 2015 16:51:23 +0000 (+0200) Subject: Merge remote-tracking branch 'upstream/master' into social-master X-Git-Url: https://git.mxchange.org/?p=quix0rs-gnu-social.git;a=commitdiff_plain;h=7a106f6669a62e401fc0c4c09c6c6859328ec3a2 Merge remote-tracking branch 'upstream/master' into social-master Signed-off-by: Roland Haeder Conflicts: actions/allrss.php actions/deletenotice.php actions/foaf.php actions/groupbyid.php actions/grouprss.php actions/noticesearchrss.php actions/oauthappssettings.php actions/oauthconnectionssettings.php actions/publicrss.php actions/redirecturl.php actions/repliesrss.php actions/robotstxt.php actions/tagrss.php actions/userrss.php classes/Notice.php lib/rss10action.php lib/settingsaction.php plugins/Bookmark/actions/bookmarksrss.php plugins/DirectMessage/actions/apidirectmessage.php plugins/Directory/lib/sortablegrouplist.php plugins/Directory/lib/sortablesubscriptionlist.php plugins/ExtendedProfile/actions/profiledetail.php plugins/FacebookBridge/actions/facebooksettings.php plugins/Favorite/actions/favoritesrss.php plugins/Favorite/actions/showfavorites.php plugins/Gravatar/GravatarPlugin.php plugins/ModLog/ModLogPlugin.php plugins/SubMirror/actions/mirrorsettings.php plugins/TwitterBridge/actions/twitterauthorization.php plugins/TwitterBridge/actions/twitterlogin.php plugins/TwitterBridge/daemons/twitterstatusfetcher.php plugins/TwitterBridge/lib/tweetinqueuehandler.php --- 7a106f6669a62e401fc0c4c09c6c6859328ec3a2 diff --cc actions/foaf.php index a17962b97e,260388ba44..4420c2d503 --- a/actions/foaf.php +++ b/actions/foaf.php @@@ -24,9 -24,9 +24,9 @@@ define('LISTENEE', -1) define('BOTH', 0); // @todo XXX: Documentation missing. - class FoafAction extends Action + class FoafAction extends ManagedAction { - function isReadOnly($args) + function isReadOnly(array $args=array()) { return true; } diff --cc actions/userrss.php index 1ae94ee93f,7bed1dd256..147d98cc26 --- a/actions/userrss.php +++ b/actions/userrss.php @@@ -98,22 -58,16 +58,16 @@@ class UserrssAction extends TargetedRss return $c; } - function getImage() - { - $profile = $this->user->getProfile(); - return $profile->avatarUrl(AVATAR_PROFILE_SIZE); - } - // override parent to add X-SUP-ID URL - function initRss($limit=0) + function initRss() { - $url = common_local_url('sup', null, null, $this->user->id); + $url = common_local_url('sup', null, null, $this->target->getID()); header('X-SUP-ID: '.$url); - parent::initRss($limit); + parent::initRss(); } - function isReadOnly($args) + function isReadOnly(array $args=array()) { return true; } diff --cc classes/Notice.php index 563efaf4e5,0d0933115e..0fe1296bc3 --- a/classes/Notice.php +++ b/classes/Notice.php @@@ -1668,26 -1677,16 +1679,16 @@@ class Notice extends Managed_DataObjec */ function getReplies() { - if (isset($this->_replies[$this->id])) { - return $this->_replies[$this->id]; - } - - $replyMap = Reply::listGet('notice_id', array($this->id)); - - $ids = array(); - - foreach ($replyMap[$this->id] as $reply) { - $ids[] = $reply->profile_id; + if (!isset($this->_replies[$this->getID()])) { + $mentions = Reply::multiGet('notice_id', array($this->getID())); + $this->_replies[$this->getID()] = $mentions->fetchAll('profile_id'); } - - $this->_setReplies($ids); - - return $ids; + return $this->_replies[$this->getID()]; } - function _setReplies($replies) + function _setReplies(array $replies) { - $this->_replies[$this->id] = $replies; + $this->_replies[$this->getID()] = $replies; } /** @@@ -2926,36 -2884,50 +2924,83 @@@ } } + /** + * Checks whether the current profile is allowed (in scope) to see this notice. + * + * @return $inScope Whether the current profile is allowed to see this notice + */ + function isCurrentProfileInScope () { + // Check scope, default is allowed + $inScope = TRUE; + + //* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . '] this->tag=' . $this->tag . ',this->id=' . $this->id . ',this->scope=' . $this->scope); + + // Is it private scope? + if ($this->isPrivateScope()) { + // 2) Get current profile + $profile = Profile::current(); + + // Is the profile not set? + if (!$profile instanceof Profile) { + // Public viewer shall not see a tag from a private dent (privacy leak) + //* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . '] Not logged in (public view).'); + $inScope = FALSE; + } elseif (!$this->inScope($profile)) { + // Current profile is not in scope (not allowed to see) of notice + //* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . '] profile->id=' . $profile->id . ' is not allowed to see this notice.'); + $inScope = FALSE; + } + } + + // Return result + //* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . '] this->tag=' . $this->tag . ',this->weight=' . $this->weight . ',inScope=' . intval($inScope) . ' - EXIT!'); + return $inScope; + } ++ + static public function beforeSchemaUpdate() + { + $table = strtolower(get_called_class()); + $schema = Schema::get(); + $schemadef = $schema->getTableDef($table); + + // 2015-09-04 We move Notice location data to Notice_location + // First we see if we have to do this at all + if (!isset($schemadef['fields']['lat']) + && !isset($schemadef['fields']['lon']) + && !isset($schemadef['fields']['location_id']) + && !isset($schemadef['fields']['location_ns'])) { + // We have already removed the location fields, so no need to migrate. + return; + } + // Then we make sure the Notice_location table is created! + $schema->ensureTable('notice_location', Notice_location::schemaDef()); + + // Then we continue on our road to migration! + echo "\nFound old $table table, moving location data to 'notice_location' table... (this will probably take a LONG time, but can be aborted and continued)"; + + $notice = new Notice(); + $notice->query(sprintf('SELECT id, lat, lon, location_id, location_ns FROM %1$s ' . + 'WHERE lat IS NOT NULL ' . + 'OR lon IS NOT NULL ' . + 'OR location_id IS NOT NULL ' . + 'OR location_ns IS NOT NULL', + $schema->quoteIdentifier($table))); + print "\nFound {$notice->N} notices with location data, inserting"; + while ($notice->fetch()) { + $notloc = Notice_location::getKV('notice_id', $notice->id); + if ($notloc instanceof Notice_location) { + print "-"; + continue; + } + $notloc = new Notice_location(); + $notloc->notice_id = $notice->id; + $notloc->lat= $notice->lat; + $notloc->lon= $notice->lon; + $notloc->location_id= $notice->location_id; + $notloc->location_ns= $notice->location_ns; + $notloc->insert(); + print "."; + } + print "\n"; + } } diff --cc plugins/BlogspamNet/BlogspamNetPlugin.php index 3df1e29f2e,2cab69be30..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/BlogspamNetPlugin.php +++ /dev/null @@@ -1,162 -1,162 +1,0 @@@ --. -- * -- * @category Plugin -- * @package StatusNet -- * @author Evan Prodromou -- * @author Brion Vibber -- * @copyright 2009 StatusNet, Inc. -- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 -- * @link http://status.net/ -- */ -- --if (!defined('STATUSNET')) { -- exit(1); --} -- --define('BLOGSPAMNETPLUGIN_VERSION', '0.1'); -- --/** -- * Plugin to check submitted notices with blogspam.net -- * -- * When new notices are saved, we check their text with blogspam.net (or -- * a compatible service). -- * -- * Blogspam.net is supposed to catch blog comment spam, and I found that -- * some of its tests (min/max size, bayesian match) gave a lot of false positives. -- * So, I've turned those tests off by default. This may not get as many -- * hits, but it's better than nothing. -- * -- * @category Plugin -- * @package StatusNet -- * @author Evan Prodromou -- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 -- * @link http://status.net/ -- * -- * @see Event -- */ --class BlogspamNetPlugin extends Plugin --{ -- var $baseUrl = 'http://test.blogspam.net:8888/'; -- -- function __construct($url=null) -- { -- parent::__construct(); -- if ($url) { -- $this->baseUrl = $url; -- } -- } -- - function onStartNoticeSave(Notice $notice) - function onStartNoticeSave($notice) -- { -- $args = $this->testArgs($notice); -- common_debug("Blogspamnet args = " . print_r($args, TRUE)); -- $requestBody = xmlrpc_encode_request('testComment', array($args)); -- -- $request = new HTTPClient($this->baseUrl, HTTPClient::METHOD_POST); -- $request->setHeader('Content-Type', 'text/xml'); -- $request->setBody($requestBody); -- $httpResponse = $request->send(); -- -- $response = xmlrpc_decode($httpResponse->getBody()); -- if (xmlrpc_is_fault($response)) { -- throw new ServerException("$response[faultString] ($response[faultCode])", 500); -- } else { -- common_debug("Blogspamnet results = " . $response); -- if (preg_match('/^ERROR(:(.*))?$/', $response, $match)) { -- // TRANS: Server exception thrown when blogspam.net returns error status. -- // TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no period). -- throw new ServerException(sprintf(_m('Error from %1$s: %2$s'), $this->baseUrl, $match[2]), 500); -- } else if (preg_match('/^SPAM(:(.*))?$/', $response, $match)) { -- // TRANS: Server exception thrown when blogspam.net returns spam status. -- // TRANS: Does not end with period because of unknown contents for %s (spam match). -- throw new ClientException(sprintf(_m('Spam checker results: %s'), $match[2]), 400); -- } else if (preg_match('/^OK$/', $response)) { -- // don't do anything -- } else { -- // TRANS: Server exception thrown when blogspam.net returns an unexpected status. -- // TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no period). -- throw new ServerException(sprintf(_m('Unexpected response from %1$s: %2$s'), $this->baseUrl, $response), 500); -- } -- } -- return true; -- } -- -- function testArgs($notice) -- { -- $args = array(); -- $args['comment'] = $notice->content; -- $args['ip'] = $this->getClientIP(); -- -- if (isset($_SERVER) && array_key_exists('HTTP_USER_AGENT', $_SERVER)) { -- $args['agent'] = $_SERVER['HTTP_USER_AGENT']; -- } -- -- $profile = $notice->getProfile(); -- -- if ($profile && $profile->homepage) { -- $args['link'] = $profile->homepage; -- } -- -- if ($profile && $profile->fullname) { -- $args['name'] = $profile->fullname; -- } else { -- $args['name'] = $profile->nickname; -- } -- -- $args['site'] = common_root_url(); -- $args['version'] = $this->userAgent(); -- -- $args['options'] = "max-size=" . common_config('site','textlimit') . ",min-size=0,min-words=0,exclude=bayasian"; -- -- return $args; -- } -- -- function getClientIP() -- { -- if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) { -- // Note: order matters here; use proxy-forwarded stuff first -- foreach (array('HTTP_X_FORWARDED_FOR', 'CLIENT-IP', 'REMOTE_ADDR') as $k) { -- if (isset($_SERVER[$k])) { -- return $_SERVER[$k]; -- } -- } -- } -- return '127.0.0.1'; -- } -- -- function version() -- { -- return BLOGSPAMNETPLUGIN_VERSION; -- } -- -- function onPluginVersion(array &$versions) -- { -- $versions[] = array('name' => 'BlogspamNet', -- 'version' => BLOGSPAMNETPLUGIN_VERSION, -- 'author' => 'Evan Prodromou, Brion Vibber', -- 'homepage' => 'http://status.net/wiki/Plugin:BlogspamNet', -- 'rawdescription' => -- // TRANS: Plugin description. -- _m('Plugin to check submitted notices with blogspam.net.')); -- return true; -- } --} diff --cc plugins/BlogspamNet/locale/BlogspamNet.pot index 0a0805c573,0a0805c573..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/BlogspamNet.pot +++ /dev/null @@@ -1,44 -1,44 +1,0 @@@ --# 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: 2015-02-27 16:31+0100\n" --"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" --"Last-Translator: FULL NAME \n" --"Language-Team: LANGUAGE \n" --"Language: \n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=CHARSET\n" --"Content-Transfer-Encoding: 8bit\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/af/LC_MESSAGES/BlogspamNet.po index ef5c1729da,ef5c1729da..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/af/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Afrikaans (http://www.transifex.com/projects/p/gnu-social/language/af/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: af\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/ar/LC_MESSAGES/BlogspamNet.po index 3b9b7d57c5,3b9b7d57c5..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/ar/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Arabic (http://www.transifex.com/projects/p/gnu-social/language/ar/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: ar\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: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/arz/LC_MESSAGES/BlogspamNet.po index 131352d61f,131352d61f..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/arz/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Arabic (Egypt) (http://www.transifex.com/projects/p/gnu-social/language/ar_EG/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: ar_EG\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: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/ast/LC_MESSAGES/BlogspamNet.po index 3404bf7d45,3404bf7d45..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/ast/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Asturian (http://www.transifex.com/projects/p/gnu-social/language/ast/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: ast\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/be-tarask/LC_MESSAGES/BlogspamNet.po index a85ddc6b1e,a85ddc6b1e..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/be-tarask/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:13+0000\n" --"Last-Translator: digitaldreamer \n" --"Language-Team: Belarusian (Tarask) (http://www.transifex.com/projects/p/gnu-social/language/be@tarask/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: be@tarask\n" --"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "Дапаўненьне для праверкі дасланых абвяшчэньняў з дапамогай blogspam.net." diff --cc plugins/BlogspamNet/locale/bg/LC_MESSAGES/BlogspamNet.po index f24ecbaa42,f24ecbaa42..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/bg/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Bulgarian (http://www.transifex.com/projects/p/gnu-social/language/bg/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: bg\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/br/LC_MESSAGES/BlogspamNet.po index 2a76c5b667,2a76c5b667..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/br/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:13+0000\n" --"Last-Translator: digitaldreamer \n" --"Language-Team: Breton (http://www.transifex.com/projects/p/gnu-social/language/br/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: br\n" --"Plural-Forms: nplurals=2; plural=(n > 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "Astenn evit gwiriañ gant blogspam.net ar c'hmennoù kaset." diff --cc plugins/BlogspamNet/locale/ca/LC_MESSAGES/BlogspamNet.po index 4139e2ed34,4139e2ed34..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/ca/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Catalan (http://www.transifex.com/projects/p/gnu-social/language/ca/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: ca\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/cs/LC_MESSAGES/BlogspamNet.po index e87df32122,e87df32122..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/cs/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Czech (http://www.transifex.com/projects/p/gnu-social/language/cs/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: cs\n" --"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/da/LC_MESSAGES/BlogspamNet.po index 8bcc544b46,8bcc544b46..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/da/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Danish (http://www.transifex.com/projects/p/gnu-social/language/da/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: da\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po index 900af42314,900af42314..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:13+0000\n" --"Last-Translator: digitaldreamer \n" --"Language-Team: German (http://www.transifex.com/projects/p/gnu-social/language/de/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: de\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "Fehler von %1$s: %2$s" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "Spamüberprüfungsergebnisse: %s" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "Unerwartete Antwort von %1$s: %2$s" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "Plugin zur Überprüfung von Nachrichten mit blogspam.net." diff --cc plugins/BlogspamNet/locale/el/LC_MESSAGES/BlogspamNet.po index 2938434c63,2938434c63..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/el/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Greek (http://www.transifex.com/projects/p/gnu-social/language/el/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: el\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/en_GB/LC_MESSAGES/BlogspamNet.po index 76000dc33d,76000dc33d..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/en_GB/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/gnu-social/language/en_GB/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: en_GB\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/eo/LC_MESSAGES/BlogspamNet.po index 51d7738fb8,51d7738fb8..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/eo/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Esperanto (http://www.transifex.com/projects/p/gnu-social/language/eo/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: eo\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po index 397bcfa577,397bcfa577..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,49 -1,49 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --# Juan Riquelme González , 2015 --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-25 23:54+0000\n" --"Last-Translator: Juan Riquelme González \n" --"Language-Team: Spanish (http://www.transifex.com/projects/p/gnu-social/language/es/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: es\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "Error de %1$s: %2$s" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "Resultados de analisis antispam: %s" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "Respuesta inesperada de %1$s: %2$s" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "Extensión para revisar los mensajes enviados con blogspam.net." diff --cc plugins/BlogspamNet/locale/eu/LC_MESSAGES/BlogspamNet.po index b95426a4a0,b95426a4a0..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/eu/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:13+0000\n" --"Last-Translator: digitaldreamer \n" --"Language-Team: Basque (http://www.transifex.com/projects/p/gnu-social/language/eu/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: eu\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "%1$s(e)n akatsa: %2$s" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "Spam egiaztatzailearen emaitza: %s" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "Ezusteko erantzuna %1$s(e)n: %2$s" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "blogspam.net-ekin oharrak egiaztatzeko plugina." diff --cc plugins/BlogspamNet/locale/fa/LC_MESSAGES/BlogspamNet.po index 54d236850f,54d236850f..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/fa/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Persian (http://www.transifex.com/projects/p/gnu-social/language/fa/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: fa\n" --"Plural-Forms: nplurals=1; plural=0;\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/fi/LC_MESSAGES/BlogspamNet.po index e446eb6de9,e446eb6de9..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/fi/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:13+0000\n" --"Last-Translator: digitaldreamer \n" --"Language-Team: Finnish (http://www.transifex.com/projects/p/gnu-social/language/fi/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: fi\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "Liitännäinen viestien tarkastamiseen blogspam.net-palvelun avulla." diff --cc plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po index 579d01a10d,579d01a10d..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:13+0000\n" --"Last-Translator: digitaldreamer \n" --"Language-Team: French (http://www.transifex.com/projects/p/gnu-social/language/fr/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: fr\n" --"Plural-Forms: nplurals=2; plural=(n > 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "Erreur de %1$s : %2$s" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "Résultats du vérificateur de spam : %s" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "Réponse inattendue de %1$s : %2$s" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "Extension pour vérifier avec blogspam.net les avis soumis." diff --cc plugins/BlogspamNet/locale/fur/LC_MESSAGES/BlogspamNet.po index 0a92e7e113,0a92e7e113..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/fur/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Friulian (http://www.transifex.com/projects/p/gnu-social/language/fur/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: fur\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/gl/LC_MESSAGES/BlogspamNet.po index 58b28f6f07,58b28f6f07..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/gl/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:13+0000\n" --"Last-Translator: digitaldreamer \n" --"Language-Team: Galician (http://www.transifex.com/projects/p/gnu-social/language/gl/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: gl\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "Erro de %1$s: %2$s" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "Resultados do verificador de spam: %s" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "Resposta inesperada de %1$s: %2$s" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "Complemento para comprobar as notas enviadas con blogspam.net." diff --cc plugins/BlogspamNet/locale/he/LC_MESSAGES/BlogspamNet.po index c037dd7979,c037dd7979..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/he/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:13+0000\n" --"Last-Translator: digitaldreamer \n" --"Language-Team: Hebrew (http://www.transifex.com/projects/p/gnu-social/language/he/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: he\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "תוסף לבדיקת ההתרעות הנשלחות מול blogspam.net." diff --cc plugins/BlogspamNet/locale/hsb/LC_MESSAGES/BlogspamNet.po index 107e8784b6,107e8784b6..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/hsb/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Upper Sorbian (http://www.transifex.com/projects/p/gnu-social/language/hsb/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: hsb\n" --"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/hu/LC_MESSAGES/BlogspamNet.po index 2d583d4583,2d583d4583..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/hu/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Hungarian (http://www.transifex.com/projects/p/gnu-social/language/hu/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: hu\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po index 6d386bfad4,6d386bfad4..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:13+0000\n" --"Last-Translator: digitaldreamer \n" --"Language-Team: Interlingua (http://www.transifex.com/projects/p/gnu-social/language/ia/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: ia\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "Error de %1$s: %2$s" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "Resultatos del controlo anti-spam: %s" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "Responsa inexpectate de %1$s: %2$s" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "Plug-in pro verificar notas submittite contra blogspam.net." diff --cc plugins/BlogspamNet/locale/id/LC_MESSAGES/BlogspamNet.po index 13e0a188d9,13e0a188d9..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/id/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Indonesian (http://www.transifex.com/projects/p/gnu-social/language/id/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: id\n" --"Plural-Forms: nplurals=1; plural=0;\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/is/LC_MESSAGES/BlogspamNet.po index f810927e59,f810927e59..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/is/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Icelandic (http://www.transifex.com/projects/p/gnu-social/language/is/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: is\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/it/LC_MESSAGES/BlogspamNet.po index 0025eb4f7b,0025eb4f7b..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/it/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:13+0000\n" --"Last-Translator: digitaldreamer \n" --"Language-Team: Italian (http://www.transifex.com/projects/p/gnu-social/language/it/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: it\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "Errore da %1$s: %2$s" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "Risultati verifica spam: %s" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "Risposta inaspettata da %1$s: %2$s" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "Plugin per controllare gli avvisi inviati con blogspam.net." diff --cc plugins/BlogspamNet/locale/ja/LC_MESSAGES/BlogspamNet.po index 8f5129b4fe,8f5129b4fe..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/ja/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Japanese (http://www.transifex.com/projects/p/gnu-social/language/ja/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: ja\n" --"Plural-Forms: nplurals=1; plural=0;\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/ka/LC_MESSAGES/BlogspamNet.po index f13258a59c,f13258a59c..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/ka/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Georgian (http://www.transifex.com/projects/p/gnu-social/language/ka/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: ka\n" --"Plural-Forms: nplurals=1; plural=0;\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/ko/LC_MESSAGES/BlogspamNet.po index e9b0d0a165,e9b0d0a165..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/ko/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Korean (http://www.transifex.com/projects/p/gnu-social/language/ko/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: ko\n" --"Plural-Forms: nplurals=1; plural=0;\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/ksh/LC_MESSAGES/BlogspamNet.po index 071369ebfc,071369ebfc..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/ksh/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Colognian (http://www.transifex.com/projects/p/gnu-social/language/ksh/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: ksh\n" --"Plural-Forms: nplurals=3; plural=(n==0) ? 0 : (n==1) ? 1 : 2;\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/lb/LC_MESSAGES/BlogspamNet.po index 42c40465ee,42c40465ee..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/lb/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/gnu-social/language/lb/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: lb\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/lt/LC_MESSAGES/BlogspamNet.po index 9718599951,9718599951..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/lt/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:13+0000\n" --"Last-Translator: digitaldreamer \n" --"Language-Team: Lithuanian (http://www.transifex.com/projects/p/gnu-social/language/lt/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: lt\n" --"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "Klaida iš %1$s: %2$s" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "Šlamštas tikrintuvo rezultatai: %s" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "Netikėtas atsakymas iš %1$s: %2$s" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/lv/LC_MESSAGES/BlogspamNet.po index 64267d5410,64267d5410..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/lv/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-07 09:39+0000\n" --"Last-Translator: digitaldreamer \n" --"Language-Team: Latvian (http://www.transifex.com/projects/p/gnu-social/language/lv/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: lv\n" --"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/mg/LC_MESSAGES/BlogspamNet.po index 6dd7152b1a,6dd7152b1a..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/mg/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 16:19+0000\n" --"Last-Translator: digitaldreamer \n" --"Language-Team: Malagasy (http://www.transifex.com/projects/p/gnu-social/language/mg/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: mg\n" --"Plural-Forms: nplurals=2; plural=(n > 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po index fbd8eff38c,fbd8eff38c..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:13+0000\n" --"Last-Translator: digitaldreamer \n" --"Language-Team: Macedonian (http://www.transifex.com/projects/p/gnu-social/language/mk/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: mk\n" --"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "Грешка од %1$s: %2$s" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "Резултати од проверката на спам: %s" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "Неочекуван одговор од %1$s: %2$s" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "Приклучок за проверка на поднесените забелешки со blogspam.net." diff --cc plugins/BlogspamNet/locale/ml/LC_MESSAGES/BlogspamNet.po index cb488b800e,cb488b800e..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/ml/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Malayalam (http://www.transifex.com/projects/p/gnu-social/language/ml/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: ml\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/ms/LC_MESSAGES/BlogspamNet.po index d6d11ce403,d6d11ce403..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/ms/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Malay (http://www.transifex.com/projects/p/gnu-social/language/ms/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: ms\n" --"Plural-Forms: nplurals=1; plural=0;\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/my/LC_MESSAGES/BlogspamNet.po index 620f960af5,620f960af5..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/my/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Burmese (http://www.transifex.com/projects/p/gnu-social/language/my/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: my\n" --"Plural-Forms: nplurals=1; plural=0;\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po index b94c44d476,b94c44d476..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:13+0000\n" --"Last-Translator: digitaldreamer \n" --"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/gnu-social/language/nb/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: nb\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "Feil fra %1$s: %2$s" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "Uventet svar fra %1$s: %2$s" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "Utvidelse for å sjekke innsendte notiser med blogspam.net." diff --cc plugins/BlogspamNet/locale/ne/LC_MESSAGES/BlogspamNet.po index d8f166dea1,d8f166dea1..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/ne/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-07 09:30+0000\n" --"Last-Translator: digitaldreamer \n" --"Language-Team: Nepali (http://www.transifex.com/projects/p/gnu-social/language/ne/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: ne\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po index 4e71619dc1,4e71619dc1..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:13+0000\n" --"Last-Translator: digitaldreamer \n" --"Language-Team: Dutch (http://www.transifex.com/projects/p/gnu-social/language/nl/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: nl\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "Fout van %1$s: %2$s" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "Spamcontroleresultaten: %s" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "Onverwacht antwoord van %1$s: %2$s" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "Plug-in om mededelingen te controleren tegen blogspam.net." diff --cc plugins/BlogspamNet/locale/nn/LC_MESSAGES/BlogspamNet.po index e747daefd3,e747daefd3..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/nn/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Norwegian Nynorsk (http://www.transifex.com/projects/p/gnu-social/language/nn/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: nn\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/pl/LC_MESSAGES/BlogspamNet.po index 76019290de,76019290de..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/pl/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Polish (http://www.transifex.com/projects/p/gnu-social/language/pl/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: pl\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: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/pt/LC_MESSAGES/BlogspamNet.po index cec0b2e429,cec0b2e429..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/pt/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:13+0000\n" --"Last-Translator: digitaldreamer \n" --"Language-Team: Portuguese (http://www.transifex.com/projects/p/gnu-social/language/pt/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: pt\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "Plugin para verificar mensagens submetidas com o blogspam.net." diff --cc plugins/BlogspamNet/locale/pt_BR/LC_MESSAGES/BlogspamNet.po index c13095c607,c13095c607..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/pt_BR/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/gnu-social/language/pt_BR/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: pt_BR\n" --"Plural-Forms: nplurals=2; plural=(n > 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po index b544c74c87,b544c74c87..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:13+0000\n" --"Last-Translator: digitaldreamer \n" --"Language-Team: Russian (http://www.transifex.com/projects/p/gnu-social/language/ru/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: ru\n" --"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "Результат проверки на спам: %s" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "Плагин для проверки отправленных сообщений с помощью blogspam.net." diff --cc plugins/BlogspamNet/locale/sr-ec/LC_MESSAGES/BlogspamNet.po index 332197b2d4,332197b2d4..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/sr-ec/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Serbian (http://www.transifex.com/projects/p/gnu-social/language/sr/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: sr\n" --"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/sv/LC_MESSAGES/BlogspamNet.po index 72e7c43f0e,72e7c43f0e..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/sv/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,49 -1,49 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --# Kristoffer Grundström , 2015 --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-26 13:10+0000\n" --"Last-Translator: Kristoffer Grundström \n" --"Language-Team: Swedish (http://www.transifex.com/projects/p/gnu-social/language/sv/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: sv\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "Fel från %1$s: %2$s" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/ta/LC_MESSAGES/BlogspamNet.po index e1a30fd178,e1a30fd178..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/ta/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-07 08:48+0000\n" --"Last-Translator: digitaldreamer \n" --"Language-Team: Tamil (http://www.transifex.com/projects/p/gnu-social/language/ta/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: ta\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/te/LC_MESSAGES/BlogspamNet.po index 6f291c9461,6f291c9461..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/te/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Telugu (http://www.transifex.com/projects/p/gnu-social/language/te/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: te\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po index 67d1f29d19,67d1f29d19..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:13+0000\n" --"Last-Translator: digitaldreamer \n" --"Language-Team: Tagalog (http://www.transifex.com/projects/p/gnu-social/language/tl/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: tl\n" --"Plural-Forms: nplurals=2; plural=(n > 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "Kamalian mula sa %1$s: %2$s" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "Mga kinalabasan ng pangsuri ng basurang liham: %s" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "Hindi inaasahang tugon mula sa %1$s: %2$s" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "Pamasak upang masuri ang ipinasang mga pabatid sa pamamagitan ng blogspam.net." diff --cc plugins/BlogspamNet/locale/tr/LC_MESSAGES/BlogspamNet.po index b72da76578,b72da76578..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/tr/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Turkish (http://www.transifex.com/projects/p/gnu-social/language/tr/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: tr\n" --"Plural-Forms: nplurals=2; plural=(n > 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po index 25a9d847a6,25a9d847a6..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:13+0000\n" --"Last-Translator: digitaldreamer \n" --"Language-Team: Ukrainian (http://www.transifex.com/projects/p/gnu-social/language/uk/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: uk\n" --"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "Помилка з %1$s: %2$s" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "Результати перевірки спаму: %s" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "Неочікувана відповідь від %1$s: %2$s" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "Додаток для перевірки вказаних повідомлень на blogspam.net." diff --cc plugins/BlogspamNet/locale/ur_PK/LC_MESSAGES/BlogspamNet.po index b759219f76,b759219f76..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/ur_PK/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/gnu-social/language/ur_PK/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: ur_PK\n" --"Plural-Forms: nplurals=2; plural=(n != 1);\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/vi/LC_MESSAGES/BlogspamNet.po index 2d93462d2e,2d93462d2e..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/vi/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Vietnamese (http://www.transifex.com/projects/p/gnu-social/language/vi/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: vi\n" --"Plural-Forms: nplurals=1; plural=0;\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po index a3353310b4,a3353310b4..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:13+0000\n" --"Last-Translator: digitaldreamer \n" --"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/gnu-social/language/zh_CN/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: zh_CN\n" --"Plural-Forms: nplurals=1; plural=0;\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "通过 blogspam.net 检查发布的消息的插件。" diff --cc plugins/BlogspamNet/locale/zh_TW/LC_MESSAGES/BlogspamNet.po index 4888d79ebf,4888d79ebf..0000000000 deleted file mode 100644,100644 --- a/plugins/BlogspamNet/locale/zh_TW/LC_MESSAGES/BlogspamNet.po +++ /dev/null @@@ -1,48 -1,48 +1,0 @@@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER --# This file is distributed under the same license as the PACKAGE package. --# --# Translators: --msgid "" --msgstr "" --"Project-Id-Version: GNU social\n" --"Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2015-02-02 17:47+0100\n" --"PO-Revision-Date: 2015-02-06 15:04+0000\n" --"Last-Translator: FULL NAME \n" --"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/gnu-social/language/zh_TW/)\n" --"MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=UTF-8\n" --"Content-Transfer-Encoding: 8bit\n" --"Language: zh_TW\n" --"Plural-Forms: nplurals=1; plural=0;\n" -- --#. TRANS: Server exception thrown when blogspam.net returns error status. --#. TRANS: %1$s is the base URL, %2$s is the error (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:87 --#, php-format --msgid "Error from %1$s: %2$s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns spam status. --#. TRANS: Does not end with period because of unknown contents for %s (spam --#. match). --#: BlogspamNetPlugin.php:91 --#, php-format --msgid "Spam checker results: %s" --msgstr "" -- --#. TRANS: Server exception thrown when blogspam.net returns an unexpected --#. status. --#. TRANS: %1$s is the base URL, %2$s is the response (unknown contents; no --#. period). --#: BlogspamNetPlugin.php:97 --#, php-format --msgid "Unexpected response from %1$s: %2$s" --msgstr "" -- --#. TRANS: Plugin description. --#: BlogspamNetPlugin.php:159 --msgid "Plugin to check submitted notices with blogspam.net." --msgstr "" diff --cc plugins/ModLog/ModLogPlugin.php index e659ee57c3,d1e01ca849..aa275fd82a --- a/plugins/ModLog/ModLogPlugin.php +++ b/plugins/ModLog/ModLogPlugin.php @@@ -101,10 -101,10 +101,10 @@@ class ModLogPlugin extends Plugi $modlog->profile_id = $profile->id; - $cur = common_current_user(); + $scoped = Profile::current(); - + - if (!empty($cur)) { - $modlog->moderator_id = $cur->id; + if ($scoped instanceof Profile) { + $modlog->moderator_id = $scoped->getID(); } $modlog->role = $role; diff --cc plugins/TwitterBridge/daemons/synctwitterfriends.php index 335bc2c754,9fa3b282b4..fd7f9c28f1 mode 100644,100755..100644 --- a/plugins/TwitterBridge/daemons/synctwitterfriends.php +++ b/plugins/TwitterBridge/daemons/synctwitterfriends.php diff --cc plugins/TwitterBridge/daemons/twitterstatusfetcher.php index 7860a1fedf,83e8a0df5e..fd3b5765e2 mode 100644,100755..100644 --- a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php +++ b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php diff --cc plugins/WebFinger/WebFingerPlugin.php index d7a330c8da,c2a9c69d0c..28dc1bf079 --- a/plugins/WebFinger/WebFingerPlugin.php +++ b/plugins/WebFinger/WebFingerPlugin.php @@@ -141,10 -141,10 +141,10 @@@ class WebFingerPlugin extends Plugi /** * Add a link header for LRDD Discovery */ - public function onStartShowHTML($action) + public function onStartShowHTML(Action $action) { if ($action instanceof ShowstreamAction) { - $acct = 'acct:'. $action->profile->nickname .'@'. common_config('site', 'server'); + $acct = 'acct:'. $action->getTarget()->getNickname() .'@'. common_config('site', 'server'); $url = common_local_url('webfinger') . '?resource='.$acct; foreach (array(Discovery::JRD_MIMETYPE, Discovery::XRD_MIMETYPE) as $type) {