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;
}
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;
}
*/
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;
}
/**
}
}
+ /**
+ * 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";
+ }
}
+++ /dev/null
--<?php
--/**
-- * StatusNet, the distributed open-source microblogging tool
-- *
-- * Plugin to check submitted notices with blogspam.net
-- *
-- * PHP version 5
-- *
-- * LICENCE: This program is free software: you can redistribute it and/or modify
-- * it under the terms of the GNU Affero General Public License as published by
-- * the Free Software Foundation, either version 3 of the License, or
-- * (at your option) any later version.
-- *
-- * This program is distributed in the hope that it will be useful,
-- * but WITHOUT ANY WARRANTY; without even the implied warranty of
-- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- * GNU Affero General Public License for more details.
-- *
-- * You should have received a copy of the GNU Affero General Public License
-- * along with this program. If not, see <http://www.gnu.org/licenses/>.
-- *
-- * @category Plugin
-- * @package StatusNet
-- * @author Evan Prodromou <evan@status.net>
-- * @author Brion Vibber <brion@status.net>
-- * @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 <evan@status.net>
-- * @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;
-- }
--}
+++ /dev/null
--# 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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
--"Language-Team: LANGUAGE <LL@li.org>\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 ""
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <digitaldreamer@email.cz>\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."
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <digitaldreamer@email.cz>\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."
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <digitaldreamer@email.cz>\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."
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <soulchainer@gmail.com>, 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 <soulchainer@gmail.com>\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."
+++ /dev/null
--# 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 <digitaldreamer@email.cz>\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."
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <digitaldreamer@email.cz>\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."
+++ /dev/null
--# 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 <digitaldreamer@email.cz>\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."
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <digitaldreamer@email.cz>\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."
+++ /dev/null
--# 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 <digitaldreamer@email.cz>\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."
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <digitaldreamer@email.cz>\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."
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <digitaldreamer@email.cz>\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."
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <digitaldreamer@email.cz>\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 ""
+++ /dev/null
--# 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 <digitaldreamer@email.cz>\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 ""
+++ /dev/null
--# 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 <digitaldreamer@email.cz>\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 ""
+++ /dev/null
--# 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 <digitaldreamer@email.cz>\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."
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <digitaldreamer@email.cz>\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."
+++ /dev/null
--# 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 <digitaldreamer@email.cz>\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 ""
+++ /dev/null
--# 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 <digitaldreamer@email.cz>\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."
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <digitaldreamer@email.cz>\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."
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <digitaldreamer@email.cz>\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."
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <kristoffer.grundstrom1983@gmail.com>, 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 <kristoffer.grundstrom1983@gmail.com>\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 ""
+++ /dev/null
--# 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 <digitaldreamer@email.cz>\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 ""
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <digitaldreamer@email.cz>\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."
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <digitaldreamer@email.cz>\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."
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
+++ /dev/null
--# 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 <digitaldreamer@email.cz>\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 检查发布的消息的插件。"
+++ /dev/null
--# 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 <EMAIL@ADDRESS>\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 ""
$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;
/**
* 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) {