From 62e8081863f9adee4f9020d75e1efc16c87dacba Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Sat, 31 May 2014 00:04:02 +0200 Subject: [PATCH] Maybe the least necessary plugin: PoweredByStatusNet --- .../PoweredByStatusNetPlugin.php | 67 ------------------- .../locale/PoweredByStatusNet.pot | 29 -------- .../af/LC_MESSAGES/PoweredByStatusNet.po | 32 --------- .../br/LC_MESSAGES/PoweredByStatusNet.po | 37 ---------- .../ca/LC_MESSAGES/PoweredByStatusNet.po | 34 ---------- .../de/LC_MESSAGES/PoweredByStatusNet.po | 35 ---------- .../es/LC_MESSAGES/PoweredByStatusNet.po | 35 ---------- .../eu/LC_MESSAGES/PoweredByStatusNet.po | 34 ---------- .../fr/LC_MESSAGES/PoweredByStatusNet.po | 36 ---------- .../gl/LC_MESSAGES/PoweredByStatusNet.po | 34 ---------- .../he/LC_MESSAGES/PoweredByStatusNet.po | 33 --------- .../ia/LC_MESSAGES/PoweredByStatusNet.po | 34 ---------- .../mk/LC_MESSAGES/PoweredByStatusNet.po | 34 ---------- .../nl/LC_MESSAGES/PoweredByStatusNet.po | 34 ---------- .../pl/LC_MESSAGES/PoweredByStatusNet.po | 39 ----------- .../pt/LC_MESSAGES/PoweredByStatusNet.po | 37 ---------- .../ru/LC_MESSAGES/PoweredByStatusNet.po | 39 ----------- .../sv/LC_MESSAGES/PoweredByStatusNet.po | 35 ---------- .../tl/LC_MESSAGES/PoweredByStatusNet.po | 34 ---------- .../uk/LC_MESSAGES/PoweredByStatusNet.po | 35 ---------- 20 files changed, 727 deletions(-) delete mode 100644 plugins/PoweredByStatusNet/PoweredByStatusNetPlugin.php delete mode 100644 plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot delete mode 100644 plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po delete mode 100644 plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po delete mode 100644 plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po delete mode 100644 plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po delete mode 100644 plugins/PoweredByStatusNet/locale/es/LC_MESSAGES/PoweredByStatusNet.po delete mode 100644 plugins/PoweredByStatusNet/locale/eu/LC_MESSAGES/PoweredByStatusNet.po delete mode 100644 plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po delete mode 100644 plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po delete mode 100644 plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po delete mode 100644 plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po delete mode 100644 plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po delete mode 100644 plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po delete mode 100644 plugins/PoweredByStatusNet/locale/pl/LC_MESSAGES/PoweredByStatusNet.po delete mode 100644 plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po delete mode 100644 plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po delete mode 100644 plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po delete mode 100644 plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po delete mode 100644 plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po diff --git a/plugins/PoweredByStatusNet/PoweredByStatusNetPlugin.php b/plugins/PoweredByStatusNet/PoweredByStatusNetPlugin.php deleted file mode 100644 index badc24bbd7..0000000000 --- a/plugins/PoweredByStatusNet/PoweredByStatusNetPlugin.php +++ /dev/null @@ -1,67 +0,0 @@ -. - * - * @category Action - * @package StatusNet - * @author Sarven Capadisli - * @copyright 2008 StatusNet, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ - */ - -if (!defined('STATUSNET') && !defined('LACONICA')) { - exit(1); -} - -/** - * Outputs 'powered by StatusNet' after site name - * - * @category Plugin - * @package StatusNet - * @author Sarven Capadisli - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ - */ -class PoweredByStatusNetPlugin extends Plugin -{ - function onEndAddressData($action) - { - $action->text(' '); - $action->elementStart('span', 'poweredby'); - // TRANS: Text output after site name. - $action->raw(_m('powered by StatusNet')); - $action->elementEnd('span'); - - return true; - } - - function onPluginVersion(&$versions) - { - $versions[] = array('name' => 'PoweredByStatusNet', - 'version' => GNUSOCIAL_VERSION, - 'author' => 'Sarven Capadisli', - 'homepage' => 'http://status.net/wiki/Plugin:PoweredByStatusNet', - 'rawdescription' => - // TRANS: Plugin description. - _m('Outputs "powered by StatusNet" after site name.')); - return true; - } -} diff --git a/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot deleted file mode 100644 index 69b4c51551..0000000000 --- a/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot +++ /dev/null @@ -1,29 +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: Text output after site name. -#: PoweredByStatusNetPlugin.php:50 -msgid "powered by StatusNet" -msgstr "" - -#. TRANS: Plugin description. -#: PoweredByStatusNetPlugin.php:64 -msgid "" -"Outputs \"powered by StatusNet\" after " -"site name." -msgstr "" diff --git a/plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po deleted file mode 100644 index ad1507c75e..0000000000 --- a/plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po +++ /dev/null @@ -1,32 +0,0 @@ -# Translation of StatusNet - PoweredByStatusNet to Afrikaans (Afrikaans) -# Exported from translatewiki.net -# -# Author: Naudefj -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - PoweredByStatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:09:39+0000\n" -"Language-Team: Afrikaans \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: af\n" -"X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Text output after site name. -msgid "powered by StatusNet" -msgstr "aangedryf deur StatusNet" - -#. TRANS: Plugin description. -msgid "" -"Outputs \"powered by StatusNet\" after " -"site name." -msgstr "" diff --git a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po deleted file mode 100644 index 0271d5af42..0000000000 --- a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po +++ /dev/null @@ -1,37 +0,0 @@ -# Translation of StatusNet - PoweredByStatusNet 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 - PoweredByStatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:09:39+0000\n" -"Language-Team: Breton \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:19:26+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-poweredbystatusnet\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. TRANS: Text output after site name. -#, fuzzy -msgid "powered by StatusNet" -msgstr "" -"Diskwel \"enlusket gant StatusNet\" goude " -"anv al lec'hienn." - -#. TRANS: Plugin description. -msgid "" -"Outputs \"powered by StatusNet\" after " -"site name." -msgstr "" -"Diskwel \"enlusket gant StatusNet\" goude " -"anv al lec'hienn." diff --git a/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po deleted file mode 100644 index db18b32858..0000000000 --- a/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po +++ /dev/null @@ -1,34 +0,0 @@ -# Translation of StatusNet - PoweredByStatusNet to Catalan (català) -# Exported from translatewiki.net -# -# Author: Toniher -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - PoweredByStatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:09:40+0000\n" -"Language-Team: Catalan \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: ca\n" -"X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Text output after site name. -msgid "powered by StatusNet" -msgstr "funciona amb StatusNet" - -#. TRANS: Plugin description. -msgid "" -"Outputs \"powered by StatusNet\" after " -"site name." -msgstr "" -"Les sortides «funciona amb StatusNet» " -"després del lloc del nom." diff --git a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po deleted file mode 100644 index c33ec2496d..0000000000 --- a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po +++ /dev/null @@ -1,35 +0,0 @@ -# Translation of StatusNet - PoweredByStatusNet to German (Deutsch) -# Exported from translatewiki.net -# -# Author: DaSch -# Author: The Evil IP address -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - PoweredByStatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:09:40+0000\n" -"Language-Team: German \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:19:26+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-poweredbystatusnet\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Text output after site name. -msgid "powered by StatusNet" -msgstr "bereitgestellt von StatusNet" - -#. TRANS: Plugin description. -msgid "" -"Outputs \"powered by StatusNet\" after " -"site name." -msgstr "" -"Fügt „bereitgestellt von StatusNet“ " -"hinter dem Seitennamen ein." diff --git a/plugins/PoweredByStatusNet/locale/es/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/es/LC_MESSAGES/PoweredByStatusNet.po deleted file mode 100644 index abdfc9d83f..0000000000 --- a/plugins/PoweredByStatusNet/locale/es/LC_MESSAGES/PoweredByStatusNet.po +++ /dev/null @@ -1,35 +0,0 @@ -# Translation of StatusNet - PoweredByStatusNet to Spanish (español) -# Exported from translatewiki.net -# -# Author: Armando-Martin -# Author: Peter17 -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - PoweredByStatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:09:40+0000\n" -"Language-Team: Spanish \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:19:26+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-poweredbystatusnet\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Text output after site name. -msgid "powered by StatusNet" -msgstr "Desarrollado por StatusNet" - -#. TRANS: Plugin description. -msgid "" -"Outputs \"powered by StatusNet\" after " -"site name." -msgstr "" -"Añade la frase \"desarrollado por StatusNet\" tras el nombre del sitio." diff --git a/plugins/PoweredByStatusNet/locale/eu/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/eu/LC_MESSAGES/PoweredByStatusNet.po deleted file mode 100644 index 8afd5a7168..0000000000 --- a/plugins/PoweredByStatusNet/locale/eu/LC_MESSAGES/PoweredByStatusNet.po +++ /dev/null @@ -1,34 +0,0 @@ -# Translation of StatusNet - PoweredByStatusNet to Basque (euskara) -# Exported from translatewiki.net -# -# Author: Artsuaga -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - PoweredByStatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:09:40+0000\n" -"Language-Team: Basque \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:19:26+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-poweredbystatusnet\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Text output after site name. -msgid "powered by StatusNet" -msgstr "StatusNetekin dabil" - -#. TRANS: Plugin description. -msgid "" -"Outputs \"powered by StatusNet\" after " -"site name." -msgstr "" -"Gunearen izenaren ondoren \"StatusNetekin " -"dabil\" esaldia jartzen du." diff --git a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po deleted file mode 100644 index 3912803f12..0000000000 --- a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po +++ /dev/null @@ -1,36 +0,0 @@ -# Translation of StatusNet - PoweredByStatusNet to French (français) -# Exported from translatewiki.net -# -# Author: Crochet.david -# Author: Peter17 -# Author: Verdy p -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - PoweredByStatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:09:40+0000\n" -"Language-Team: French \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:19:26+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-poweredbystatusnet\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. TRANS: Text output after site name. -msgid "powered by StatusNet" -msgstr "propulsé par StatusNet" - -#. TRANS: Plugin description. -msgid "" -"Outputs \"powered by StatusNet\" after " -"site name." -msgstr "" -"Affiche « propulsé par StatusNet » après " -"le nom du site." diff --git a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po deleted file mode 100644 index a5741c1f2e..0000000000 --- a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po +++ /dev/null @@ -1,34 +0,0 @@ -# Translation of StatusNet - PoweredByStatusNet 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 - PoweredByStatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:09:40+0000\n" -"Language-Team: Galician \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:19:26+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-poweredbystatusnet\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Text output after site name. -msgid "powered by StatusNet" -msgstr "desenvolvido por StatusNet" - -#. TRANS: Plugin description. -msgid "" -"Outputs \"powered by StatusNet\" after " -"site name." -msgstr "" -"Produce un \"desenvolvido por StatusNet\" " -"despois do nome do sitio." diff --git a/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po deleted file mode 100644 index 54263e530d..0000000000 --- a/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po +++ /dev/null @@ -1,33 +0,0 @@ -# Translation of StatusNet - PoweredByStatusNet to Hebrew (עברית) -# Exported from translatewiki.net -# -# Author: Amire80 -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - PoweredByStatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:09:40+0000\n" -"Language-Team: Hebrew \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:19:26+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-poweredbystatusnet\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Text output after site name. -msgid "powered by StatusNet" -msgstr "עובד על סטטוסנט" - -#. TRANS: Plugin description. -msgid "" -"Outputs \"powered by StatusNet\" after " -"site name." -msgstr "" -"רושם \"עובד על סטטוסנט\" אחרי שם האתר." diff --git a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po deleted file mode 100644 index 68eb0bf825..0000000000 --- a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po +++ /dev/null @@ -1,34 +0,0 @@ -# Translation of StatusNet - PoweredByStatusNet 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 - PoweredByStatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:09:40+0000\n" -"Language-Team: Interlingua \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:19:26+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-poweredbystatusnet\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Text output after site name. -msgid "powered by StatusNet" -msgstr "actionate per StatusNet" - -#. TRANS: Plugin description. -msgid "" -"Outputs \"powered by StatusNet\" after " -"site name." -msgstr "" -"Affixa \"actionate per StatusNet\" post " -"le nomine del sito." diff --git a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po deleted file mode 100644 index 862389a0f5..0000000000 --- a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po +++ /dev/null @@ -1,34 +0,0 @@ -# Translation of StatusNet - PoweredByStatusNet 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 - PoweredByStatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:09:40+0000\n" -"Language-Team: Macedonian \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:19:26+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-poweredbystatusnet\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" - -#. TRANS: Text output after site name. -msgid "powered by StatusNet" -msgstr "со поддршка од StatusNet" - -#. TRANS: Plugin description. -msgid "" -"Outputs \"powered by StatusNet\" after " -"site name." -msgstr "" -"Дава „со поддршка од StatusNet“ по името " -"на мреж. место." diff --git a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po deleted file mode 100644 index 57eb1be9de..0000000000 --- a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po +++ /dev/null @@ -1,34 +0,0 @@ -# Translation of StatusNet - PoweredByStatusNet 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 - PoweredByStatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:09:40+0000\n" -"Language-Team: Dutch \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:19:26+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-poweredbystatusnet\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Text output after site name. -msgid "powered by StatusNet" -msgstr "powered by StatusNet" - -#. TRANS: Plugin description. -msgid "" -"Outputs \"powered by StatusNet\" after " -"site name." -msgstr "" -"Voegt de tekst \"Powered by StatusNet\" " -"toe na de sitenaam." diff --git a/plugins/PoweredByStatusNet/locale/pl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/pl/LC_MESSAGES/PoweredByStatusNet.po deleted file mode 100644 index b4087c7ba4..0000000000 --- a/plugins/PoweredByStatusNet/locale/pl/LC_MESSAGES/PoweredByStatusNet.po +++ /dev/null @@ -1,39 +0,0 @@ -# Translation of StatusNet - PoweredByStatusNet to Polish (Polski) -# Expored from translatewiki.net -# -# Author: Raven -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - PoweredByStatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-12-16 15:08+0000\n" -"PO-Revision-Date: 2010-12-16 15:12:47+0000\n" -"Language-Team: Polish \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-11-30 20:43:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-Language-Code: pl\n" -"X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\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: %s is a URL to status.net with "StatusNet" (localised) as link text. -#: PoweredByStatusNetPlugin.php:51 -#, php-format -msgid "powered by %s" -msgstr "" - -#: PoweredByStatusNetPlugin.php:53 -msgid "StatusNet" -msgstr "StatusNet" - -#: PoweredByStatusNetPlugin.php:66 -msgid "" -"Outputs \"powered by StatusNet\" after " -"site name." -msgstr "" diff --git a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po deleted file mode 100644 index 6f67d14758..0000000000 --- a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po +++ /dev/null @@ -1,37 +0,0 @@ -# Translation of StatusNet - PoweredByStatusNet to Portuguese (português) -# Exported from translatewiki.net -# -# Author: Waldir -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - PoweredByStatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:09:40+0000\n" -"Language-Team: Portuguese \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:19:26+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-poweredbystatusnet\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Text output after site name. -#, fuzzy -msgid "powered by StatusNet" -msgstr "" -"Produz o texto \"potenciado por StatusNet" -"\" a seguir ao nome do site." - -#. TRANS: Plugin description. -msgid "" -"Outputs \"powered by StatusNet\" after " -"site name." -msgstr "" -"Produz o texto \"potenciado por StatusNet" -"\" a seguir ao nome do site." diff --git a/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po deleted file mode 100644 index 89fd3bcdcd..0000000000 --- a/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po +++ /dev/null @@ -1,39 +0,0 @@ -# Translation of StatusNet - PoweredByStatusNet to Russian (русский) -# Exported from translatewiki.net -# -# Author: MaxSem -# Author: Александр Сигачёв -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - PoweredByStatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:09:41+0000\n" -"Language-Team: Russian \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:19:26+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-poweredbystatusnet\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: Text output after site name. -#, fuzzy -msgid "powered by StatusNet" -msgstr "" -"Выводит «при поддержке StatusNet» после " -"названия сайта." - -#. TRANS: Plugin description. -msgid "" -"Outputs \"powered by StatusNet\" after " -"site name." -msgstr "" -"Выводит «при поддержке StatusNet» после " -"названия сайта." diff --git a/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po deleted file mode 100644 index f6b2704def..0000000000 --- a/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po +++ /dev/null @@ -1,35 +0,0 @@ -# Translation of StatusNet - PoweredByStatusNet to Swedish (svenska) -# Exported from translatewiki.net -# -# Author: Jamminjohn -# Author: WikiPhoenix -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - PoweredByStatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:09:41+0000\n" -"Language-Team: Swedish \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: sv\n" -"X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Text output after site name. -msgid "powered by StatusNet" -msgstr "drivs av StatusNet" - -#. TRANS: Plugin description. -msgid "" -"Outputs \"powered by StatusNet\" after " -"site name." -msgstr "" -"Skriver ut \"drivs av StatusNet\" efter " -"namnet på webbplatsen." diff --git a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po deleted file mode 100644 index 9b4079514f..0000000000 --- a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po +++ /dev/null @@ -1,34 +0,0 @@ -# Translation of StatusNet - PoweredByStatusNet 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 - PoweredByStatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:09:41+0000\n" -"Language-Team: Tagalog \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:19:26+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-poweredbystatusnet\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: Text output after site name. -msgid "powered by StatusNet" -msgstr "binibigyang lakas ng StatusNet\"" - -#. TRANS: Plugin description. -msgid "" -"Outputs \"powered by StatusNet\" after " -"site name." -msgstr "" -"Ang mga paglalabas ay \"pinapatakbo ng StatusNet\" pagkaraan ng pangalan ng sityo." diff --git a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po deleted file mode 100644 index 7b24d496e9..0000000000 --- a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po +++ /dev/null @@ -1,35 +0,0 @@ -# Translation of StatusNet - PoweredByStatusNet 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 - PoweredByStatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:09:41+0000\n" -"Language-Team: Ukrainian \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 16:19:26+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-poweredbystatusnet\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: Text output after site name. -msgid "powered by StatusNet" -msgstr "працює на StatusNet" - -#. TRANS: Plugin description. -msgid "" -"Outputs \"powered by StatusNet\" after " -"site name." -msgstr "" -"Даний додаток виводить припис «працює на StatusNet» після назви сайту."