From 1acffa9c7a3ea067aea7c768d0c3fa2d8a0db6e3 Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Wed, 30 Apr 2014 20:35:06 +0200 Subject: [PATCH] wtf is Echo? bah, let's get rid of this crap --- plugins/Echo/EchoPlugin.php | 116 ------------------ plugins/Echo/locale/Echo.pot | 24 ---- plugins/Echo/locale/ar/LC_MESSAGES/Echo.po | 32 ----- .../Echo/locale/be-tarask/LC_MESSAGES/Echo.po | 31 ----- plugins/Echo/locale/br/LC_MESSAGES/Echo.po | 30 ----- plugins/Echo/locale/de/LC_MESSAGES/Echo.po | 30 ----- plugins/Echo/locale/es/LC_MESSAGES/Echo.po | 30 ----- plugins/Echo/locale/eu/LC_MESSAGES/Echo.po | 30 ----- plugins/Echo/locale/fi/LC_MESSAGES/Echo.po | 30 ----- plugins/Echo/locale/fr/LC_MESSAGES/Echo.po | 30 ----- plugins/Echo/locale/gl/LC_MESSAGES/Echo.po | 30 ----- plugins/Echo/locale/he/LC_MESSAGES/Echo.po | 31 ----- plugins/Echo/locale/ia/LC_MESSAGES/Echo.po | 30 ----- plugins/Echo/locale/id/LC_MESSAGES/Echo.po | 30 ----- plugins/Echo/locale/it/LC_MESSAGES/Echo.po | 27 ---- plugins/Echo/locale/lb/LC_MESSAGES/Echo.po | 30 ----- plugins/Echo/locale/mk/LC_MESSAGES/Echo.po | 30 ----- plugins/Echo/locale/nb/LC_MESSAGES/Echo.po | 30 ----- plugins/Echo/locale/nl/LC_MESSAGES/Echo.po | 30 ----- plugins/Echo/locale/pl/LC_MESSAGES/Echo.po | 28 ----- plugins/Echo/locale/pt/LC_MESSAGES/Echo.po | 30 ----- plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po | 31 ----- plugins/Echo/locale/ru/LC_MESSAGES/Echo.po | 31 ----- plugins/Echo/locale/tl/LC_MESSAGES/Echo.po | 30 ----- plugins/Echo/locale/uk/LC_MESSAGES/Echo.po | 31 ----- plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po | 29 ----- 26 files changed, 861 deletions(-) delete mode 100644 plugins/Echo/EchoPlugin.php delete mode 100644 plugins/Echo/locale/Echo.pot delete mode 100644 plugins/Echo/locale/ar/LC_MESSAGES/Echo.po delete mode 100644 plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po delete mode 100644 plugins/Echo/locale/br/LC_MESSAGES/Echo.po delete mode 100644 plugins/Echo/locale/de/LC_MESSAGES/Echo.po delete mode 100644 plugins/Echo/locale/es/LC_MESSAGES/Echo.po delete mode 100644 plugins/Echo/locale/eu/LC_MESSAGES/Echo.po delete mode 100644 plugins/Echo/locale/fi/LC_MESSAGES/Echo.po delete mode 100644 plugins/Echo/locale/fr/LC_MESSAGES/Echo.po delete mode 100644 plugins/Echo/locale/gl/LC_MESSAGES/Echo.po delete mode 100644 plugins/Echo/locale/he/LC_MESSAGES/Echo.po delete mode 100644 plugins/Echo/locale/ia/LC_MESSAGES/Echo.po delete mode 100644 plugins/Echo/locale/id/LC_MESSAGES/Echo.po delete mode 100644 plugins/Echo/locale/it/LC_MESSAGES/Echo.po delete mode 100644 plugins/Echo/locale/lb/LC_MESSAGES/Echo.po delete mode 100644 plugins/Echo/locale/mk/LC_MESSAGES/Echo.po delete mode 100644 plugins/Echo/locale/nb/LC_MESSAGES/Echo.po delete mode 100644 plugins/Echo/locale/nl/LC_MESSAGES/Echo.po delete mode 100644 plugins/Echo/locale/pl/LC_MESSAGES/Echo.po delete mode 100644 plugins/Echo/locale/pt/LC_MESSAGES/Echo.po delete mode 100644 plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po delete mode 100644 plugins/Echo/locale/ru/LC_MESSAGES/Echo.po delete mode 100644 plugins/Echo/locale/tl/LC_MESSAGES/Echo.po delete mode 100644 plugins/Echo/locale/uk/LC_MESSAGES/Echo.po delete mode 100644 plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po diff --git a/plugins/Echo/EchoPlugin.php b/plugins/Echo/EchoPlugin.php deleted file mode 100644 index b76ee27875..0000000000 --- a/plugins/Echo/EchoPlugin.php +++ /dev/null @@ -1,116 +0,0 @@ -. - * - * @category Plugin - * @package StatusNet - * @author Zach Copley - * @copyright 2010 StatusNet, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ - */ - -if (!defined('STATUSNET')) { - exit(1); -} - -/** - * Plugin to use Echo (formerly JS-Kit) - * - * This plugin adds an Echo commenting widget to each notice page on - * your site. To get it to work, first you'll have to sign up for Echo - * (a for-pay service) and register your site's URL. - * - * http://aboutecho.com/ - * - * Once you've done that it's pretty straight forward to turn the - * plugin on; just add this to your config.php: - * - * addPlugin( - * 'Echo', - * array('div_style' => 'width:675px; padding-top:10px; position:relative; float:left;') - * ); - * - * NOTE: the 'div_style' in an optional parameter that passes in some - * inline CSS when creating the Echo widget. It's a shortcut to make - * the widget look OK with the default StatusNet theme. If you leave - * it out you'll have to edit your theme CSS files to make the widget - * look good. You can also control the way the widget looks by - * adding style rules to your theme. - * - * See: http://wiki.js-kit.com/Skinning-Guide#UsingCSSnbsptocustomizefontsandcolors - * - * @category Plugin - * @package StatusNet - * @author Zach Copley - * @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 EchoPlugin extends Plugin -{ - // NOTE: The Echo documentation says that this script will change on - // a per site basis, but I think that's incorrect. It always seems to - // be the same. - public $script = 'http://cdn.js-kit.com/scripts/comments.js'; - - function onEndShowScripts($action) - { - if (get_class($action) == 'ShownoticeAction') { - $action->script($this->script); - } - - return true; - } - - function onEndShowContentBlock($action) - { - if (get_class($action) == 'ShownoticeAction') { - - $attrs = array(); - $attrs['class'] = 'js-kit-comments'; - $attrs['permalink'] = $action->notice->uri; - $attrs['uniq'] = $action->notice->id; - - // NOTE: there are some other attributes that could be useful - // http://wiki.js-kit.com/Echo-Behavior - - if (!empty($this->div_style)) { - $attrs['style'] = $this->div_style; - } - - $action->element('div', $attrs, null); - } - } - - function onPluginVersion(&$versions) - { - $versions[] = array('name' => 'Echo', - 'version' => GNUSOCIAL_VERSION, - 'author' => 'Zach Copley', - 'homepage' => 'http://status.net/wiki/Plugin:Echo', - 'rawdescription' => - // TRANS: Plugin description. - _m('Use Echo'. - ' to add commenting to notice pages.')); - return true; - } -} diff --git a/plugins/Echo/locale/Echo.pot b/plugins/Echo/locale/Echo.pot deleted file mode 100644 index e2cb4968c5..0000000000 --- a/plugins/Echo/locale/Echo.pot +++ /dev/null @@ -1,24 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#. TRANS: Plugin description. -#: EchoPlugin.php:112 -msgid "" -"Use Echo to add commenting to notice " -"pages." -msgstr "" diff --git a/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po deleted file mode 100644 index 3a2155fe50..0000000000 --- a/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po +++ /dev/null @@ -1,32 +0,0 @@ -# Translation of StatusNet - Echo to Arabic (العربية) -# Exported from translatewiki.net -# -# Author: OsamaK -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Echo\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:17+0000\n" -"Language-Team: Arabic \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: ar\n" -"X-Message-Group: #out-statusnet-plugin-echo\n" -"Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " -"2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " -"99) ? 4 : 5 ) ) ) );\n" - -#. TRANS: Plugin description. -msgid "" -"Use Echo to add commenting to notice " -"pages." -msgstr "" -"استخدم Echo لإضافة تعليقات إلى صفحات " -"الإشعارات." diff --git a/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po b/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po deleted file mode 100644 index d62bdb44db..0000000000 --- a/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po +++ /dev/null @@ -1,31 +0,0 @@ -# Translation of StatusNet - Echo to Belarusian (Taraškievica orthography) (‪беларуская (тарашкевіца)‬) -# Exported from translatewiki.net -# -# Author: Jim-by -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Echo\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:17+0000\n" -"Language-Team: Belarusian (Taraškievica orthography) \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: be-tarask\n" -"X-Message-Group: #out-statusnet-plugin-echo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Plugin description. -msgid "" -"Use Echo to add commenting to notice " -"pages." -msgstr "" -"Выкарыстоўвайце Echo каб дадаць " -"камэнтары на старонкі абвяшчэньняў." diff --git a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po deleted file mode 100644 index 53a5d0ffc3..0000000000 --- a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po +++ /dev/null @@ -1,30 +0,0 @@ -# Translation of StatusNet - Echo to Breton (brezhoneg) -# Exported from translatewiki.net -# -# Author: Y-M D -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Echo\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:17+0000\n" -"Language-Team: Breton \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: br\n" -"X-Message-Group: #out-statusnet-plugin-echo\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. TRANS: Plugin description. -msgid "" -"Use Echo to add commenting to notice " -"pages." -msgstr "" -"Implijit Echo evit ouzhpennañ " -"evezhiadennoù d'ar pajennoù alioù." diff --git a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po deleted file mode 100644 index eed897f38f..0000000000 --- a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po +++ /dev/null @@ -1,30 +0,0 @@ -# Translation of StatusNet - Echo to German (Deutsch) -# Exported from translatewiki.net -# -# Author: The Evil IP address -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Echo\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:17+0000\n" -"Language-Team: German \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: de\n" -"X-Message-Group: #out-statusnet-plugin-echo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Plugin description. -msgid "" -"Use Echo to add commenting to notice " -"pages." -msgstr "" -"Benutzung von Echo zum Hinzufügen von " -"Kommentaren auf Nachrichtenseiten." diff --git a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po deleted file mode 100644 index e8c9694ebc..0000000000 --- a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po +++ /dev/null @@ -1,30 +0,0 @@ -# Translation of StatusNet - Echo to Spanish (español) -# Exported from translatewiki.net -# -# Author: Translationista -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Echo\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:18+0000\n" -"Language-Team: Spanish \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: es\n" -"X-Message-Group: #out-statusnet-plugin-echo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Plugin description. -msgid "" -"Use Echo to add commenting to notice " -"pages." -msgstr "" -"Usar Echo para añadir comentarios a " -"las páginas de mensajes." diff --git a/plugins/Echo/locale/eu/LC_MESSAGES/Echo.po b/plugins/Echo/locale/eu/LC_MESSAGES/Echo.po deleted file mode 100644 index 8a97c70f39..0000000000 --- a/plugins/Echo/locale/eu/LC_MESSAGES/Echo.po +++ /dev/null @@ -1,30 +0,0 @@ -# Translation of StatusNet - Echo to Basque (euskara) -# Exported from translatewiki.net -# -# Author: Artsuaga -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Echo\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:18+0000\n" -"Language-Team: Basque \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: eu\n" -"X-Message-Group: #out-statusnet-plugin-echo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Plugin description. -msgid "" -"Use Echo to add commenting to notice " -"pages." -msgstr "" -"Erabili Echo oharren orriei iruzkinak " -"gehitzeko." diff --git a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po deleted file mode 100644 index 34bde12f7b..0000000000 --- a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po +++ /dev/null @@ -1,30 +0,0 @@ -# Translation of StatusNet - Echo to Finnish (suomi) -# Exported from translatewiki.net -# -# Author: Nike -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Echo\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:18+0000\n" -"Language-Team: Finnish \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: fi\n" -"X-Message-Group: #out-statusnet-plugin-echo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Plugin description. -msgid "" -"Use Echo to add commenting to notice " -"pages." -msgstr "" -"Lisää kommentointimahdollisuus ilmoitussivulle Echon avulla." diff --git a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po deleted file mode 100644 index 00db601145..0000000000 --- a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po +++ /dev/null @@ -1,30 +0,0 @@ -# Translation of StatusNet - Echo to French (français) -# Exported from translatewiki.net -# -# Author: Verdy p -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Echo\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:18+0000\n" -"Language-Team: French \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: fr\n" -"X-Message-Group: #out-statusnet-plugin-echo\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. TRANS: Plugin description. -msgid "" -"Use Echo to add commenting to notice " -"pages." -msgstr "" -"Utilisez Echo pour ajouter des " -"commentaires aux pages d’avis." diff --git a/plugins/Echo/locale/gl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/gl/LC_MESSAGES/Echo.po deleted file mode 100644 index 8e274c1590..0000000000 --- a/plugins/Echo/locale/gl/LC_MESSAGES/Echo.po +++ /dev/null @@ -1,30 +0,0 @@ -# Translation of StatusNet - Echo to Galician (galego) -# Exported from translatewiki.net -# -# Author: Toliño -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Echo\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:18+0000\n" -"Language-Team: Galician \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: gl\n" -"X-Message-Group: #out-statusnet-plugin-echo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Plugin description. -msgid "" -"Use Echo to add commenting to notice " -"pages." -msgstr "" -"Usa Echo para engadir comentarios ás " -"páxinas das notas." diff --git a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po deleted file mode 100644 index 0ed6d3b903..0000000000 --- a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po +++ /dev/null @@ -1,31 +0,0 @@ -# Translation of StatusNet - Echo to Hebrew (עברית) -# Exported from translatewiki.net -# -# Author: Amire80 -# Author: YaronSh -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Echo\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:18+0000\n" -"Language-Team: Hebrew \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: he\n" -"X-Message-Group: #out-statusnet-plugin-echo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Plugin description. -msgid "" -"Use Echo to add commenting to notice " -"pages." -msgstr "" -"להשתמש ב־Echo כדי להוסיף הערות לדפי " -"עדכון." diff --git a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po deleted file mode 100644 index 2b07a3981c..0000000000 --- a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po +++ /dev/null @@ -1,30 +0,0 @@ -# Translation of StatusNet - Echo to Interlingua (interlingua) -# Exported from translatewiki.net -# -# Author: McDutchie -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Echo\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:18+0000\n" -"Language-Team: Interlingua \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: ia\n" -"X-Message-Group: #out-statusnet-plugin-echo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Plugin description. -msgid "" -"Use Echo to add commenting to notice " -"pages." -msgstr "" -"Usar Echo pro adder le possibilitate " -"de commentar a paginas de notas." diff --git a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po deleted file mode 100644 index 72d4f0fee2..0000000000 --- a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po +++ /dev/null @@ -1,30 +0,0 @@ -# Translation of StatusNet - Echo to Indonesian (Bahasa Indonesia) -# Exported from translatewiki.net -# -# Author: Farras -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Echo\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:18+0000\n" -"Language-Team: Indonesian \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: id\n" -"X-Message-Group: #out-statusnet-plugin-echo\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. TRANS: Plugin description. -msgid "" -"Use Echo to add commenting to notice " -"pages." -msgstr "" -"Gunakan Echo untuk menambahkan " -"komentar ke halaman pemberitahuan." diff --git a/plugins/Echo/locale/it/LC_MESSAGES/Echo.po b/plugins/Echo/locale/it/LC_MESSAGES/Echo.po deleted file mode 100644 index 38ea05de7b..0000000000 --- a/plugins/Echo/locale/it/LC_MESSAGES/Echo.po +++ /dev/null @@ -1,27 +0,0 @@ -# Translation of StatusNet - Echo to Italian (italiano) -# Exported from translatewiki.net -# -# Author: Ximo17 -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Echo\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:18+0000\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Translation-Project: translatewiki.net \n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Plugin description. -msgid "" -"Use Echo to add commenting to notice " -"pages." -msgstr "" -"Utilizza Echo per aggiungere commenti " -"alle pagine delle notizie." diff --git a/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po b/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po deleted file mode 100644 index e39961de3f..0000000000 --- a/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po +++ /dev/null @@ -1,30 +0,0 @@ -# Translation of StatusNet - Echo to Luxembourgish (Lëtzebuergesch) -# Exported from translatewiki.net -# -# Author: Robby -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Echo\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:18+0000\n" -"Language-Team: Luxembourgish \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: lb\n" -"X-Message-Group: #out-statusnet-plugin-echo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Plugin description. -msgid "" -"Use Echo to add commenting to notice " -"pages." -msgstr "" -"Benotzt Echo fir Bemierkungen op " -"Noriichtesäiten dobäizesetzen." diff --git a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po deleted file mode 100644 index 32a6d743c8..0000000000 --- a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po +++ /dev/null @@ -1,30 +0,0 @@ -# Translation of StatusNet - Echo to Macedonian (македонски) -# Exported from translatewiki.net -# -# Author: Bjankuloski06 -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Echo\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:19+0000\n" -"Language-Team: Macedonian \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: mk\n" -"X-Message-Group: #out-statusnet-plugin-echo\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" - -#. TRANS: Plugin description. -msgid "" -"Use Echo to add commenting to notice " -"pages." -msgstr "" -"Користи Echo за додавање на коментари " -"во страници со забелешки." diff --git a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po deleted file mode 100644 index 6a4c18adc2..0000000000 --- a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po +++ /dev/null @@ -1,30 +0,0 @@ -# Translation of StatusNet - Echo to Norwegian Bokmål (‪norsk (bokmål)‬) -# Exported from translatewiki.net -# -# Author: Nghtwlkr -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Echo\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:19+0000\n" -"Language-Team: Norwegian Bokmål \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: nb\n" -"X-Message-Group: #out-statusnet-plugin-echo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Plugin description. -msgid "" -"Use Echo to add commenting to notice " -"pages." -msgstr "" -"Bruk Echo til å legge kommentering til " -"notissider." diff --git a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po deleted file mode 100644 index 91f68ea7e3..0000000000 --- a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po +++ /dev/null @@ -1,30 +0,0 @@ -# Translation of StatusNet - Echo to Dutch (Nederlands) -# Exported from translatewiki.net -# -# Author: Siebrand -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Echo\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:19+0000\n" -"Language-Team: Dutch \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: nl\n" -"X-Message-Group: #out-statusnet-plugin-echo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Plugin description. -msgid "" -"Use Echo to add commenting to notice " -"pages." -msgstr "" -"Echo gebruiken om opmerkingen toe te " -"voegen aan mededelingenpagina's." diff --git a/plugins/Echo/locale/pl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pl/LC_MESSAGES/Echo.po deleted file mode 100644 index 1dac07861c..0000000000 --- a/plugins/Echo/locale/pl/LC_MESSAGES/Echo.po +++ /dev/null @@ -1,28 +0,0 @@ -# Translation of StatusNet - Echo to Polish (polski) -# Exported from translatewiki.net -# -# Author: BeginaFelicysym -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Echo\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:19+0000\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Translation-Project: translatewiki.net \n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " -"(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" - -#. TRANS: Plugin description. -msgid "" -"Use Echo to add commenting to notice " -"pages." -msgstr "" -"Echo umożliwia dodawanie komentarzy do " -"stron ogłoszeń." diff --git a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po deleted file mode 100644 index 3ddc6b0dbb..0000000000 --- a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po +++ /dev/null @@ -1,30 +0,0 @@ -# Translation of StatusNet - Echo to Portuguese (português) -# Exported from translatewiki.net -# -# Author: Hamilton Abreu -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Echo\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:19+0000\n" -"Language-Team: Portuguese \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: pt\n" -"X-Message-Group: #out-statusnet-plugin-echo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Plugin description. -msgid "" -"Use Echo to add commenting to notice " -"pages." -msgstr "" -"Use o Echo para adicionar comentários " -"às páginas de notas." diff --git a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po deleted file mode 100644 index 39ed3646cd..0000000000 --- a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po +++ /dev/null @@ -1,31 +0,0 @@ -# Translation of StatusNet - Echo to Brazilian Portuguese (português do Brasil) -# Exported from translatewiki.net -# -# Author: Giro720 -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Echo\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:19+0000\n" -"Language-Team: Brazilian Portuguese \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: pt-br\n" -"X-Message-Group: #out-statusnet-plugin-echo\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. TRANS: Plugin description. -msgid "" -"Use Echo to add commenting to notice " -"pages." -msgstr "" -"Use o Echo para adicionar comentários " -"às páginas de notas." diff --git a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po deleted file mode 100644 index 09b36ae18e..0000000000 --- a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po +++ /dev/null @@ -1,31 +0,0 @@ -# Translation of StatusNet - Echo to Russian (русский) -# Exported from translatewiki.net -# -# Author: Александр Сигачёв -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Echo\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:19+0000\n" -"Language-Team: Russian \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: ru\n" -"X-Message-Group: #out-statusnet-plugin-echo\n" -"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " -"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" - -#. TRANS: Plugin description. -msgid "" -"Use Echo to add commenting to notice " -"pages." -msgstr "" -"Использование Echo для добавления " -"комментариев на страницы уведомления." diff --git a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po deleted file mode 100644 index 93ca84c719..0000000000 --- a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po +++ /dev/null @@ -1,30 +0,0 @@ -# Translation of StatusNet - Echo to Tagalog (Tagalog) -# Exported from translatewiki.net -# -# Author: AnakngAraw -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Echo\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:20+0000\n" -"Language-Team: Tagalog \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: tl\n" -"X-Message-Group: #out-statusnet-plugin-echo\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Plugin description. -msgid "" -"Use Echo to add commenting to notice " -"pages." -msgstr "" -"Gamitin ang Echo upang magdagdag ng " -"pagpuna sa mga pahina ng pabatid." diff --git a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po deleted file mode 100644 index 44856e8ec0..0000000000 --- a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po +++ /dev/null @@ -1,31 +0,0 @@ -# Translation of StatusNet - Echo to Ukrainian (українська) -# Exported from translatewiki.net -# -# Author: Boogie -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Echo\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:20+0000\n" -"Language-Team: Ukrainian \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: uk\n" -"X-Message-Group: #out-statusnet-plugin-echo\n" -"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " -"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" - -#. TRANS: Plugin description. -msgid "" -"Use Echo to add commenting to notice " -"pages." -msgstr "" -"Використання Echo для коментування " -"дописів." diff --git a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po deleted file mode 100644 index a9192d289f..0000000000 --- a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po +++ /dev/null @@ -1,29 +0,0 @@ -# Translation of StatusNet - Echo to Simplified Chinese (‪中文(简体)‬) -# Exported from translatewiki.net -# -# Author: ZhengYiFeng -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Echo\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:20+0000\n" -"Language-Team: Simplified Chinese \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: zh-hans\n" -"X-Message-Group: #out-statusnet-plugin-echo\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. TRANS: Plugin description. -msgid "" -"Use Echo to add commenting to notice " -"pages." -msgstr "使用Echo在消息页中添加评论。"