From caeb6e583c5f48cfb85bb9499a3074018e178673 Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Thu, 1 May 2014 02:15:10 +0200 Subject: [PATCH] We're not interested in Disqus support. --- plugins/Disqus/DisqusPlugin.php | 250 ------------------ plugins/Disqus/locale/Disqus.pot | 43 --- .../locale/be-tarask/LC_MESSAGES/Disqus.po | 50 ---- .../Disqus/locale/br/LC_MESSAGES/Disqus.po | 48 ---- .../Disqus/locale/ca/LC_MESSAGES/Disqus.po | 44 --- .../Disqus/locale/de/LC_MESSAGES/Disqus.po | 50 ---- .../Disqus/locale/es/LC_MESSAGES/Disqus.po | 48 ---- .../Disqus/locale/eu/LC_MESSAGES/Disqus.po | 45 ---- .../Disqus/locale/fr/LC_MESSAGES/Disqus.po | 49 ---- .../Disqus/locale/gl/LC_MESSAGES/Disqus.po | 48 ---- .../Disqus/locale/ia/LC_MESSAGES/Disqus.po | 48 ---- .../Disqus/locale/it/LC_MESSAGES/Disqus.po | 46 ---- .../Disqus/locale/lb/LC_MESSAGES/Disqus.po | 47 ---- .../Disqus/locale/mk/LC_MESSAGES/Disqus.po | 48 ---- .../Disqus/locale/nb/LC_MESSAGES/Disqus.po | 48 ---- .../Disqus/locale/nl/LC_MESSAGES/Disqus.po | 48 ---- .../Disqus/locale/pl/LC_MESSAGES/Disqus.po | 46 ---- .../Disqus/locale/pt/LC_MESSAGES/Disqus.po | 46 ---- .../Disqus/locale/ru/LC_MESSAGES/Disqus.po | 50 ---- .../Disqus/locale/te/LC_MESSAGES/Disqus.po | 47 ---- .../Disqus/locale/tl/LC_MESSAGES/Disqus.po | 48 ---- .../Disqus/locale/uk/LC_MESSAGES/Disqus.po | 49 ---- .../Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po | 47 ---- 23 files changed, 1293 deletions(-) delete mode 100644 plugins/Disqus/DisqusPlugin.php delete mode 100644 plugins/Disqus/locale/Disqus.pot delete mode 100644 plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po delete mode 100644 plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po delete mode 100644 plugins/Disqus/locale/ca/LC_MESSAGES/Disqus.po delete mode 100644 plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po delete mode 100644 plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po delete mode 100644 plugins/Disqus/locale/eu/LC_MESSAGES/Disqus.po delete mode 100644 plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po delete mode 100644 plugins/Disqus/locale/gl/LC_MESSAGES/Disqus.po delete mode 100644 plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po delete mode 100644 plugins/Disqus/locale/it/LC_MESSAGES/Disqus.po delete mode 100644 plugins/Disqus/locale/lb/LC_MESSAGES/Disqus.po delete mode 100644 plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po delete mode 100644 plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po delete mode 100644 plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po delete mode 100644 plugins/Disqus/locale/pl/LC_MESSAGES/Disqus.po delete mode 100644 plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po delete mode 100644 plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po delete mode 100644 plugins/Disqus/locale/te/LC_MESSAGES/Disqus.po delete mode 100644 plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po delete mode 100644 plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po delete mode 100644 plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po diff --git a/plugins/Disqus/DisqusPlugin.php b/plugins/Disqus/DisqusPlugin.php deleted file mode 100644 index 42bb1dafba..0000000000 --- a/plugins/Disqus/DisqusPlugin.php +++ /dev/null @@ -1,250 +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); -} - -/** - * - * This plugin adds Disqus commenting to your notices. Enabling this - * plugin will make each notice page display the Disqus widget, and - * notice lists will display the number of commments each notice has. - * - * To use this plugin, you need to first register your site with Disqus - * and get a Discus 'shortname' for it. - * - * http://disqus.com - * - * To enable the plugin, put the following in you config.php: - * - * addPlugin( - * 'Disqus', array( - * 'shortname' => 'YOURSHORTNAME', - * 'divStyle' => 'width:675px; padding-top:10px; position:relative; float:left;' - * ) - * ); - * - * If you only want to allow commenting on a specific user's notices or - * a specific set of users' notices initialize the plugin with the "restricted" - * parameter and grant the "richedit" role to those users. E.g.: - * - * addPlugin( - * 'Disqus', array( - * 'shortname' => 'YOURSHORTNAME', - * 'divStyle' => 'width:675px; padding-top:10px; position:relative; float:left;', - * 'restricted' => true - * ) - * ); - * - * $ php userrole.php -s#### -nusername -rrichedit - * - * - * NOTE: the 'divStyle' in an optional parameter that passes in some - * inline CSS when creating the Disqus 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://help.disqus.com/entries/100878-css-customization - * - * - * @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 DisqusPlugin extends Plugin -{ - public $shortname; // Required 'shortname' for actually triggering Disqus - public $divStyle; // Optional CSS chunk for the main
- - // By default, Disqus commenting will be available to all users. - // With restricted on, only users who have been granted the - // "richedit" role get it. - public $restricted = false; - - /** - * Add a Disqus commenting section to the end of an individual - * notice page's content block - * - * @param Action $action The current action - */ - function onEndShowContentBlock($action) - { - if (get_class($action) == 'ShownoticeAction') { - - $profile = Profile::getKV('id', $action->notice->profile_id); - - if ($this->isAllowedRichEdit($profile)) { - - $attrs = array(); - $attrs['id'] = 'disqus_thread'; - - if ($this->divStyle) { - $attrs['style'] = $this->divStyle; - } - - $action->element('div', $attrs, null); - - $script = <<inlineScript(sprintf($script, $action->notice->id, $this->shortname)); - - $attrs = array(); - - $attrs['id'] = 'disqus_thread_footer'; - - if ($this->divStyle) { - $attrs['style'] = $this->divStyle; - } - - $action->elementStart('div', $attrs); - $action->elementStart('noscript'); - - // TRANS: User notification that JavaScript is required for Disqus comment display. - // TRANS: This message contains Markdown links in the form [description](link). - $noScriptMsg = sprintf(_m("Please enable JavaScript to view the [comments powered by Disqus](http://disqus.com/?ref_noscript=%s)."), $this->shortname); - $output = common_markup_to_html($noScriptMsg); - $action->raw($output); - - $action->elementEnd('noscript'); - - $action->elementStart('a', array('href' => 'http://disqus.com', 'class' => 'dsq-brlink')); - // TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". - $action->raw(_m('Comments powered by ')); - $action->element('span', array('class' => 'logo-disqus'), 'Disqus'); - $action->elementEnd('a'); - $action->elementEnd('div'); - } - } - } - - /** - * Add Disqus comment count script to the end of the scripts section - * - * @param Action $action the current action - * - */ - function onEndShowScripts($action) - { - // fugly - $script = <<inlineScript(sprintf($script, $this->shortname, $this->shortname)); - - } - - /** - * Tack on a Disqus comments link to the notice options stanza - * (the link displays the total number of comments for each notice) - * - * @param NoticeListItem $noticeListItem - * - */ - function onEndShowNoticeInfo($noticeListItem) - { - // Don't enable commenting for remote notices - if (empty($noticeListItem->notice->is_local)) { - return; - } - - $profile = Profile::getKV('id', $noticeListItem->notice->profile_id); - - if ($this->isAllowedRichEdit($profile)) { - $noticeUrl = $noticeListItem->notice->getUrl(); - $noticeUrl .= '#disqus_thread'; - - $noticeListItem->out->element( - 'a', - array('href' => $noticeUrl, 'class' => 'disqus_count'), - // TRANS: Plugin supplied feature for Disqus comments to notices. - _m('Comments') - ); - } - } - - /** - * Does the current user have permission to use the Disqus plugin? - * Always true unless the plugin's "restricted" setting is on, in which - * case it's limited to users with the "richedit" role. - * - * @fixme make that more sanely configurable :) - * - * @param Profile $profile the profile to check - * - * @return boolean - */ - private function isAllowedRichEdit($profile) - { - if ($this->restricted) { - $user = User::getKV($profile->id); - return !empty($user) && $user->hasRole('richedit'); - } else { - return true; - } - } - - /** - * Plugin details - * - * @param &$versions Array of current plugins - * - * @return boolean true - */ - function onPluginVersion(&$versions) - { - $versions[] = array('name' => 'Disqus', - 'version' => GNUSOCIAL_VERSION, - 'author' => 'Zach Copley', - 'homepage' => 'http://status.net/wiki/Plugin:Disqus', - 'rawdescription' => - // TRANS: Plugin description. - _m('Use Disqus'. - ' to add commenting to notice pages.')); - return true; - } -} diff --git a/plugins/Disqus/locale/Disqus.pot b/plugins/Disqus/locale/Disqus.pot deleted file mode 100644 index fa9bb2c0fc..0000000000 --- a/plugins/Disqus/locale/Disqus.pot +++ /dev/null @@ -1,43 +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: User notification that JavaScript is required for Disqus comment display. -#. TRANS: This message contains Markdown links in the form [description](link). -#: DisqusPlugin.php:144 -#, php-format -msgid "" -"Please enable JavaScript to view the [comments powered by Disqus](http://" -"disqus.com/?ref_noscript=%s)." -msgstr "" - -#. TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". -#: DisqusPlugin.php:152 -msgid "Comments powered by " -msgstr "" - -#. TRANS: Plugin supplied feature for Disqus comments to notices. -#: DisqusPlugin.php:205 -msgid "Comments" -msgstr "" - -#. TRANS: Plugin description. -#: DisqusPlugin.php:246 -msgid "" -"Use Disqus to add commenting to notice " -"pages." -msgstr "" diff --git a/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po deleted file mode 100644 index 27d06bf1eb..0000000000 --- a/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po +++ /dev/null @@ -1,50 +0,0 @@ -# Translation of StatusNet - Disqus to Belarusian (Taraškievica orthography) (‪беларуская (тарашкевіца)‬) -# Exported from translatewiki.net -# -# Author: EugeneZelenko -# Author: Jim-by -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Disqus\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:12+0000\n" -"Language-Team: Belarusian (Taraškievica orthography) \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:49:59+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-disqus\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: User notification that JavaScript is required for Disqus comment display. -#. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"Please enable JavaScript to view the [comments powered by Disqus](http://" -"disqus.com/?ref_noscript=%s)." -msgstr "" -"Калі ласка, дазвольце JavaScript каб праглядзець [камэнтары Disqus](http://" -"disqus.com/?ref_noscript=%s)." - -#. TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". -msgid "Comments powered by " -msgstr "Камэнтары працуюць з дапамогай " - -#. TRANS: Plugin supplied feature for Disqus comments to notices. -msgid "Comments" -msgstr "Камэнтары" - -#. TRANS: Plugin description. -msgid "" -"Use Disqus to add commenting to notice " -"pages." -msgstr "" -"Выкарыстоўвайце Disqus каб дадаць " -"камэнтары на старонкі абвяшчэньняў." diff --git a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po deleted file mode 100644 index 82e2e1df25..0000000000 --- a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po +++ /dev/null @@ -1,48 +0,0 @@ -# Translation of StatusNet - Disqus 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 - Disqus\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:13+0000\n" -"Language-Team: Breton \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.20alpha (233fc08); Translate 2012-06-21\n" -"X-Translation-Project: translatewiki.net \n" -"X-Language-Code: br\n" -"X-Message-Group: #out-statusnet-plugin-disqus\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. TRANS: User notification that JavaScript is required for Disqus comment display. -#. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"Please enable JavaScript to view the [comments powered by Disqus](http://" -"disqus.com/?ref_noscript=%s)." -msgstr "" -"Mar plij gweredekait JavaScript evit gwelet an [evezhiadennoù enlusket gant " -"Disqus] (http://disqus.com/?ref_noscript=%s)." - -#. TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". -msgid "Comments powered by " -msgstr "Evezhiadennoù enlusket gant " - -#. TRANS: Plugin supplied feature for Disqus comments to notices. -msgid "Comments" -msgstr "Evezhiadennoù" - -#. TRANS: Plugin description. -msgid "" -"Use Disqus to add commenting to notice " -"pages." -msgstr "" -"Implijit Disqus evit ouzhpennañ " -"evezhiadennoù d'ar pajennoù alioù." diff --git a/plugins/Disqus/locale/ca/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ca/LC_MESSAGES/Disqus.po deleted file mode 100644 index a799e01d22..0000000000 --- a/plugins/Disqus/locale/ca/LC_MESSAGES/Disqus.po +++ /dev/null @@ -1,44 +0,0 @@ -# Translation of StatusNet - Disqus to Catalan (català) -# Exported from translatewiki.net -# -# Author: Toniher -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Disqus\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:13+0000\n" -"Language-Team: Catalan \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:49:59+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-disqus\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: User notification that JavaScript is required for Disqus comment display. -#. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"Please enable JavaScript to view the [comments powered by Disqus](http://" -"disqus.com/?ref_noscript=%s)." -msgstr "" - -#. TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". -msgid "Comments powered by " -msgstr "Comentaris gràcies a " - -#. TRANS: Plugin supplied feature for Disqus comments to notices. -msgid "Comments" -msgstr "Comentaris" - -#. TRANS: Plugin description. -msgid "" -"Use Disqus to add commenting to notice " -"pages." -msgstr "" diff --git a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po deleted file mode 100644 index afcb7821b4..0000000000 --- a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po +++ /dev/null @@ -1,50 +0,0 @@ -# Translation of StatusNet - Disqus to German (Deutsch) -# Exported from translatewiki.net -# -# Author: Fujnky -# Author: Michael -# Author: The Evil IP address -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Disqus\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:13+0000\n" -"Language-Team: German \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:49:59+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-disqus\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: User notification that JavaScript is required for Disqus comment display. -#. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"Please enable JavaScript to view the [comments powered by Disqus](http://" -"disqus.com/?ref_noscript=%s)." -msgstr "" -"Bitte aktiviere JavaScript, um die [von Disqus bereitgestellten Kommentare]" -"(http://disqus.com/?ref_noscript=%s) anzuzeigen." - -#. TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". -msgid "Comments powered by " -msgstr "Kommentare werden unterstützt durch " - -#. TRANS: Plugin supplied feature for Disqus comments to notices. -msgid "Comments" -msgstr "Kommentare" - -#. TRANS: Plugin description. -msgid "" -"Use Disqus to add commenting to notice " -"pages." -msgstr "" -"Benutzung von Disqus zum Hinzufügen von " -"Kommentaren auf Nachrichtenseiten." diff --git a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po deleted file mode 100644 index 14fe80df99..0000000000 --- a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po +++ /dev/null @@ -1,48 +0,0 @@ -# Translation of StatusNet - Disqus 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 - Disqus\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:13+0000\n" -"Language-Team: Spanish \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:49:59+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-disqus\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: User notification that JavaScript is required for Disqus comment display. -#. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"Please enable JavaScript to view the [comments powered by Disqus](http://" -"disqus.com/?ref_noscript=%s)." -msgstr "" -"Por favor, habilita JavaScript para ver los [comentarios con tecnología de " -"Disqus](http://disqus.com/?ref_noscript=%s)." - -#. TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". -msgid "Comments powered by " -msgstr "Comentarios con tecnología de " - -#. TRANS: Plugin supplied feature for Disqus comments to notices. -msgid "Comments" -msgstr "Comentarios" - -#. TRANS: Plugin description. -msgid "" -"Use Disqus to add commenting to notice " -"pages." -msgstr "" -"Usar Disqus para añadir comentarios a las " -"páginas de mensajes." diff --git a/plugins/Disqus/locale/eu/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/eu/LC_MESSAGES/Disqus.po deleted file mode 100644 index 4dc79e5eab..0000000000 --- a/plugins/Disqus/locale/eu/LC_MESSAGES/Disqus.po +++ /dev/null @@ -1,45 +0,0 @@ -# Translation of StatusNet - Disqus 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 - Disqus\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:13+0000\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-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: User notification that JavaScript is required for Disqus comment display. -#. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"Please enable JavaScript to view the [comments powered by Disqus](http://" -"disqus.com/?ref_noscript=%s)." -msgstr "" -"[Disqus bidez egindako](http://disqus.com/?ref_noscript=%s) iruzkinak " -"ikusteko gaitu JavaScript mesedez." - -#. TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". -msgid "Comments powered by " -msgstr "Iruzkin hauetarako erabili da " - -#. TRANS: Plugin supplied feature for Disqus comments to notices. -msgid "Comments" -msgstr "Iruzkinak" - -#. TRANS: Plugin description. -msgid "" -"Use Disqus to add commenting to notice " -"pages." -msgstr "" -"Erabili Disqus oharren orriei iruzkinak " -"gehitzeko." diff --git a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po deleted file mode 100644 index 8b1fe03444..0000000000 --- a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po +++ /dev/null @@ -1,49 +0,0 @@ -# Translation of StatusNet - Disqus to French (français) -# Exported from translatewiki.net -# -# Author: Peter17 -# Author: Verdy p -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Disqus\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:13+0000\n" -"Language-Team: French \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:49:59+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-disqus\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. TRANS: User notification that JavaScript is required for Disqus comment display. -#. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"Please enable JavaScript to view the [comments powered by Disqus](http://" -"disqus.com/?ref_noscript=%s)." -msgstr "" -"Veuillez activer JavaScript pour voir les [commentaires propulsés par " -"Disqus] (http://disqus.com/?ref_noscript=%s)." - -#. TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". -msgid "Comments powered by " -msgstr "Commentaires propulsés par " - -#. TRANS: Plugin supplied feature for Disqus comments to notices. -msgid "Comments" -msgstr "Commentaires" - -#. TRANS: Plugin description. -msgid "" -"Use Disqus to add commenting to notice " -"pages." -msgstr "" -"Utilisez Disqus pour ajouter des " -"commentaires aux pages d’avis." diff --git a/plugins/Disqus/locale/gl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/gl/LC_MESSAGES/Disqus.po deleted file mode 100644 index a77a30f5ff..0000000000 --- a/plugins/Disqus/locale/gl/LC_MESSAGES/Disqus.po +++ /dev/null @@ -1,48 +0,0 @@ -# Translation of StatusNet - Disqus 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 - Disqus\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:13+0000\n" -"Language-Team: Galician \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:49:59+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-disqus\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: User notification that JavaScript is required for Disqus comment display. -#. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"Please enable JavaScript to view the [comments powered by Disqus](http://" -"disqus.com/?ref_noscript=%s)." -msgstr "" -"Active o JavaScript para ollar os [comentarios mediante Disqus](http://" -"disqus.com/?ref_noscript=%s)." - -#. TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". -msgid "Comments powered by " -msgstr "Comentarios proporcionados por " - -#. TRANS: Plugin supplied feature for Disqus comments to notices. -msgid "Comments" -msgstr "Comentarios" - -#. TRANS: Plugin description. -msgid "" -"Use Disqus to add commenting to notice " -"pages." -msgstr "" -"Usa Disqus para engadir comentarios ás " -"páxinas das notas." diff --git a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po deleted file mode 100644 index 675d7c8dda..0000000000 --- a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po +++ /dev/null @@ -1,48 +0,0 @@ -# Translation of StatusNet - Disqus 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 - Disqus\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:13+0000\n" -"Language-Team: Interlingua \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:49:59+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-disqus\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: User notification that JavaScript is required for Disqus comment display. -#. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"Please enable JavaScript to view the [comments powered by Disqus](http://" -"disqus.com/?ref_noscript=%s)." -msgstr "" -"Per favor activa JavaScript pro vider le [commentos actionate per Disqus]" -"(http://disqus.com/?ref_noscript=%s)." - -#. TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". -msgid "Comments powered by " -msgstr "Commentos actionate per " - -#. TRANS: Plugin supplied feature for Disqus comments to notices. -msgid "Comments" -msgstr "Commentos" - -#. TRANS: Plugin description. -msgid "" -"Use Disqus to add commenting to notice " -"pages." -msgstr "" -"Usar Disqus pro adder le possibilitate de " -"commentar a paginas de notas." diff --git a/plugins/Disqus/locale/it/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/it/LC_MESSAGES/Disqus.po deleted file mode 100644 index 630d75ebfd..0000000000 --- a/plugins/Disqus/locale/it/LC_MESSAGES/Disqus.po +++ /dev/null @@ -1,46 +0,0 @@ -# Translation of StatusNet - Disqus to Italian (italiano) -# Exported from translatewiki.net -# -# Author: Od1n -# Author: Ximo17 -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Disqus\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:13+0000\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-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: User notification that JavaScript is required for Disqus comment display. -#. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"Please enable JavaScript to view the [comments powered by Disqus](http://" -"disqus.com/?ref_noscript=%s)." -msgstr "" -"Si prega di abilitare JavaScript per visualizzare i [commenti di Disqus] " -"(http://disqus.com/?ref_noscript=%s)." - -#. TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". -msgid "Comments powered by " -msgstr "Commenti creati da " - -#. TRANS: Plugin supplied feature for Disqus comments to notices. -msgid "Comments" -msgstr "Commenti" - -#. TRANS: Plugin description. -msgid "" -"Use Disqus to add commenting to notice " -"pages." -msgstr "" -"Utilizza Disqus per aggiungere commenti " -"alle pagine delle notizie." diff --git a/plugins/Disqus/locale/lb/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/lb/LC_MESSAGES/Disqus.po deleted file mode 100644 index 5d04646f23..0000000000 --- a/plugins/Disqus/locale/lb/LC_MESSAGES/Disqus.po +++ /dev/null @@ -1,47 +0,0 @@ -# Translation of StatusNet - Disqus to Luxembourgish (Lëtzebuergesch) -# Expored from translatewiki.net -# -# Author: Robby -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Disqus\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:35:47+0000\n" -"Language-Team: Luxembourgish \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-14 13:21:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-Language-Code: lb\n" -"X-Message-Group: #out-statusnet-plugin-disqus\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: User notification that JavaScript is required for Disqus comment display. -#: DisqusPlugin.php:143 -#, php-format -msgid "" -"Please enable JavaScript to view the [comments powered by Disqus](http://" -"disqus.com/?ref_noscript=%s)." -msgstr "" - -#. TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". -#: DisqusPlugin.php:151 -msgid "Comments powered by " -msgstr "" - -#. TRANS: Plugin supplied feature for Disqus comments to notices. -#: DisqusPlugin.php:204 -msgid "Comments" -msgstr "Bemierkungen" - -#. TRANS: Plugin description. -#: DisqusPlugin.php:245 -msgid "" -"Use Disqus to add commenting to notice " -"pages." -msgstr "" diff --git a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po deleted file mode 100644 index c89a0f7e64..0000000000 --- a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po +++ /dev/null @@ -1,48 +0,0 @@ -# Translation of StatusNet - Disqus 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 - Disqus\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:13+0000\n" -"Language-Team: Macedonian \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:49:59+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-disqus\n" -"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" - -#. TRANS: User notification that JavaScript is required for Disqus comment display. -#. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"Please enable JavaScript to view the [comments powered by Disqus](http://" -"disqus.com/?ref_noscript=%s)." -msgstr "" -"Вклучете го JavaScript за да можете да ги прегледувате [коментарите " -"овозможени од Disqus](http://disqus.com/?ref_noscript=%s)." - -#. TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". -msgid "Comments powered by " -msgstr "Коментарите ги овозможува " - -#. TRANS: Plugin supplied feature for Disqus comments to notices. -msgid "Comments" -msgstr "Коментари" - -#. TRANS: Plugin description. -msgid "" -"Use Disqus to add commenting to notice " -"pages." -msgstr "" -"Користи Disqus за додавање на коментари " -"во страниците на забелешките." diff --git a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po deleted file mode 100644 index e38646ecc6..0000000000 --- a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po +++ /dev/null @@ -1,48 +0,0 @@ -# Translation of StatusNet - Disqus 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 - Disqus\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:13+0000\n" -"Language-Team: Norwegian Bokmål \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:49:59+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-disqus\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: User notification that JavaScript is required for Disqus comment display. -#. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"Please enable JavaScript to view the [comments powered by Disqus](http://" -"disqus.com/?ref_noscript=%s)." -msgstr "" -"Aktiver JavaScript for å vise [kommentarene levert av Disqus](http://disqus." -"com/?ref_noscript=%s)." - -#. TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". -msgid "Comments powered by " -msgstr "Kommentarer levert av " - -#. TRANS: Plugin supplied feature for Disqus comments to notices. -msgid "Comments" -msgstr "Kommentarer" - -#. TRANS: Plugin description. -msgid "" -"Use Disqus to add commenting to notice " -"pages." -msgstr "" -"Bruk Disqus til å legge kommentering til " -"notissider." diff --git a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po deleted file mode 100644 index 22c161f582..0000000000 --- a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po +++ /dev/null @@ -1,48 +0,0 @@ -# Translation of StatusNet - Disqus 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 - Disqus\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:14+0000\n" -"Language-Team: Dutch \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:49:59+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-disqus\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: User notification that JavaScript is required for Disqus comment display. -#. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"Please enable JavaScript to view the [comments powered by Disqus](http://" -"disqus.com/?ref_noscript=%s)." -msgstr "" -"Schakel JavaScript in om de [reacties via Disqus](http://disqus.com/?" -"ref_noscript=%s) te kunnen bekijken." - -#. TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". -msgid "Comments powered by " -msgstr "Reacties powered by " - -#. TRANS: Plugin supplied feature for Disqus comments to notices. -msgid "Comments" -msgstr "Reacties" - -#. TRANS: Plugin description. -msgid "" -"Use Disqus to add commenting to notice " -"pages." -msgstr "" -"Disqus gebruiken om opmerkingen toe te " -"voegen aan mededelingenpagina's." diff --git a/plugins/Disqus/locale/pl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/pl/LC_MESSAGES/Disqus.po deleted file mode 100644 index 42f393b3a5..0000000000 --- a/plugins/Disqus/locale/pl/LC_MESSAGES/Disqus.po +++ /dev/null @@ -1,46 +0,0 @@ -# Translation of StatusNet - Disqus 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 - Disqus\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:14+0000\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-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: User notification that JavaScript is required for Disqus comment display. -#. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"Please enable JavaScript to view the [comments powered by Disqus](http://" -"disqus.com/?ref_noscript=%s)." -msgstr "" -"Włącz JavaScript, aby wyświetlić [komentarze zasilane przez Disqus] (http://" -"disqus.com/?ref_noscript= %s )." - -#. TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". -msgid "Comments powered by " -msgstr "Komentarze zasilane przez " - -#. TRANS: Plugin supplied feature for Disqus comments to notices. -msgid "Comments" -msgstr "Komentarze" - -#. TRANS: Plugin description. -msgid "" -"Use Disqus to add commenting to notice " -"pages." -msgstr "" -"Użyj Disqus by dodawać komentarze do " -"stron ogłoszeń." diff --git a/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po deleted file mode 100644 index 29c3f31c38..0000000000 --- a/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po +++ /dev/null @@ -1,46 +0,0 @@ -# Translation of StatusNet - Disqus to Portuguese (português) -# Exported from translatewiki.net -# -# Author: SandroHc -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Disqus\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:14+0000\n" -"Language-Team: Portuguese \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:49:59+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-disqus\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: User notification that JavaScript is required for Disqus comment display. -#. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"Please enable JavaScript to view the [comments powered by Disqus](http://" -"disqus.com/?ref_noscript=%s)." -msgstr "" - -#. TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". -msgid "Comments powered by " -msgstr "Comentários criados por " - -#. TRANS: Plugin supplied feature for Disqus comments to notices. -msgid "Comments" -msgstr "Comentários" - -#. TRANS: Plugin description. -msgid "" -"Use Disqus to add commenting to notice " -"pages." -msgstr "" -"Usa o Disqus para adicionar comentários " -"ás páginas." diff --git a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po deleted file mode 100644 index 75e8a8b8d8..0000000000 --- a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po +++ /dev/null @@ -1,50 +0,0 @@ -# Translation of StatusNet - Disqus 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 - Disqus\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:14+0000\n" -"Language-Team: Russian \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:49:59+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-disqus\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: User notification that JavaScript is required for Disqus comment display. -#. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"Please enable JavaScript to view the [comments powered by Disqus](http://" -"disqus.com/?ref_noscript=%s)." -msgstr "" -"Пожалуйста, включите JavaScript для просмотра [комментариев, работающих с " -"помощью Disqus](http://disqus.com/?ref_noscript=%s)." - -#. TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". -msgid "Comments powered by " -msgstr "Комментарии работают с помощью " - -#. TRANS: Plugin supplied feature for Disqus comments to notices. -msgid "Comments" -msgstr "Комментарии" - -#. TRANS: Plugin description. -msgid "" -"Use Disqus to add commenting to notice " -"pages." -msgstr "" -"Использование Disqus для добавления " -"комментариев на страницы уведомления." diff --git a/plugins/Disqus/locale/te/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/te/LC_MESSAGES/Disqus.po deleted file mode 100644 index 0da9864b22..0000000000 --- a/plugins/Disqus/locale/te/LC_MESSAGES/Disqus.po +++ /dev/null @@ -1,47 +0,0 @@ -# Translation of StatusNet - Disqus to Telugu (తెలుగు) -# Expored from translatewiki.net -# -# Author: Veeven -# -- -# This file is distributed under the same license as the StatusNet package. -# -msgid "" -msgstr "" -"Project-Id-Version: StatusNet - Disqus\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:35:48+0000\n" -"Language-Team: Telugu \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-14 13:21:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-Language-Code: te\n" -"X-Message-Group: #out-statusnet-plugin-disqus\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: User notification that JavaScript is required for Disqus comment display. -#: DisqusPlugin.php:143 -#, php-format -msgid "" -"Please enable JavaScript to view the [comments powered by Disqus](http://" -"disqus.com/?ref_noscript=%s)." -msgstr "" - -#. TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". -#: DisqusPlugin.php:151 -msgid "Comments powered by " -msgstr "" - -#. TRANS: Plugin supplied feature for Disqus comments to notices. -#: DisqusPlugin.php:204 -msgid "Comments" -msgstr "వ్యాఖ్యలు" - -#. TRANS: Plugin description. -#: DisqusPlugin.php:245 -msgid "" -"Use Disqus to add commenting to notice " -"pages." -msgstr "" diff --git a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po deleted file mode 100644 index e8e73af5c8..0000000000 --- a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po +++ /dev/null @@ -1,48 +0,0 @@ -# Translation of StatusNet - Disqus 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 - Disqus\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:14+0000\n" -"Language-Team: Tagalog \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:49:59+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-disqus\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. TRANS: User notification that JavaScript is required for Disqus comment display. -#. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"Please enable JavaScript to view the [comments powered by Disqus](http://" -"disqus.com/?ref_noscript=%s)." -msgstr "" -"Mangyaring paganahin ang JavaScript upang matingnan ang [mga punang " -"pinapatakbo ng Disqus](http://disqus.com/?ref_noscript=%s)." - -#. TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". -msgid "Comments powered by " -msgstr "Mga puna na pinatatakbo ng " - -#. TRANS: Plugin supplied feature for Disqus comments to notices. -msgid "Comments" -msgstr "Mga puna" - -#. TRANS: Plugin description. -msgid "" -"Use Disqus to add commenting to notice " -"pages." -msgstr "" -"Gamitin ang Disqus upang magdagdag ng " -"pagpuna sa mga pahina ng pabatid." diff --git a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po deleted file mode 100644 index da719de916..0000000000 --- a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po +++ /dev/null @@ -1,49 +0,0 @@ -# Translation of StatusNet - Disqus 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 - Disqus\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:14+0000\n" -"Language-Team: Ukrainian \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:49:59+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-disqus\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: User notification that JavaScript is required for Disqus comment display. -#. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"Please enable JavaScript to view the [comments powered by Disqus](http://" -"disqus.com/?ref_noscript=%s)." -msgstr "" -"Будь ласка, увімкніть JavaScript для перегляду [коментарів Disqus](http://" -"disqus.com/?ref_noscript=%s)." - -#. TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". -msgid "Comments powered by " -msgstr "Коментування можливе завдяки сервісу " - -#. TRANS: Plugin supplied feature for Disqus comments to notices. -msgid "Comments" -msgstr "Коментарі" - -#. TRANS: Plugin description. -msgid "" -"Use Disqus to add commenting to notice " -"pages." -msgstr "" -"Використання Disqus для коментування " -"дописів." diff --git a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po deleted file mode 100644 index 6c17936596..0000000000 --- a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po +++ /dev/null @@ -1,47 +0,0 @@ -# Translation of StatusNet - Disqus 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 - Disqus\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-30 11:07+0000\n" -"PO-Revision-Date: 2012-06-30 11:08:14+0000\n" -"Language-Team: Simplified Chinese \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.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-disqus\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. TRANS: User notification that JavaScript is required for Disqus comment display. -#. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"Please enable JavaScript to view the [comments powered by Disqus](http://" -"disqus.com/?ref_noscript=%s)." -msgstr "" -"请启用 JavaScript 来查看 [通过 Disqus 的评论](http://disqus.com/?" -"ref_noscript=%s)。" - -#. TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". -msgid "Comments powered by " -msgstr "通过 Disqus 的评论" - -#. TRANS: Plugin supplied feature for Disqus comments to notices. -msgid "Comments" -msgstr "评论" - -#. TRANS: Plugin description. -msgid "" -"Use Disqus to add commenting to notice " -"pages." -msgstr "使用Disqus在消息页中添加评论。" -- 2.39.5