forked from GNUsocial/gnu-social
wtf is Echo? bah, let's get rid of this crap
This commit is contained in:
parent
34b570352f
commit
1acffa9c7a
@ -1,116 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* StatusNet, the distributed open-source microblogging tool
|
|
||||||
*
|
|
||||||
* Plugin to add Echo/JS-Kit commenting to notice pages
|
|
||||||
*
|
|
||||||
* PHP version 5
|
|
||||||
*
|
|
||||||
* LICENCE: This program is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU Affero General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU Affero General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU Affero General Public License
|
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*
|
|
||||||
* @category Plugin
|
|
||||||
* @package StatusNet
|
|
||||||
* @author Zach Copley <zach@status.net>
|
|
||||||
* @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 <zach@status.net>
|
|
||||||
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
||||||
* @link http://status.net/
|
|
||||||
*
|
|
||||||
* @see Event
|
|
||||||
*/
|
|
||||||
class 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 <a href="http://aboutecho.com/">Echo</a>'.
|
|
||||||
' to add commenting to notice pages.'));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
@ -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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\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 <a href=\"http://aboutecho.com/\">Echo</a> to add commenting to notice "
|
|
||||||
"pages."
|
|
||||||
msgstr ""
|
|
@ -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 <https://translatewiki.net/wiki/Portal:ar>\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 <https://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 <a href=\"http://aboutecho.com/\">Echo</a> to add commenting to notice "
|
|
||||||
"pages."
|
|
||||||
msgstr ""
|
|
||||||
"استخدم <a href=\"http://aboutecho.com/\">Echo</a> لإضافة تعليقات إلى صفحات "
|
|
||||||
"الإشعارات."
|
|
@ -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) <https://translatewiki."
|
|
||||||
"net/wiki/Portal:be-tarask>\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 <https://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 <a href=\"http://aboutecho.com/\">Echo</a> to add commenting to notice "
|
|
||||||
"pages."
|
|
||||||
msgstr ""
|
|
||||||
"Выкарыстоўвайце <a href=\"http://aboutecho.com/\">Echo</a> каб дадаць "
|
|
||||||
"камэнтары на старонкі абвяшчэньняў."
|
|
@ -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 <https://translatewiki.net/wiki/Portal:br>\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 <https://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 <a href=\"http://aboutecho.com/\">Echo</a> to add commenting to notice "
|
|
||||||
"pages."
|
|
||||||
msgstr ""
|
|
||||||
"Implijit <a href=\"http://aboutecho.com/\">Echo</a> evit ouzhpennañ "
|
|
||||||
"evezhiadennoù d'ar pajennoù alioù."
|
|
@ -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 <https://translatewiki.net/wiki/Portal:de>\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 <https://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 <a href=\"http://aboutecho.com/\">Echo</a> to add commenting to notice "
|
|
||||||
"pages."
|
|
||||||
msgstr ""
|
|
||||||
"Benutzung von <a href=\"http://aboutecho.com/\">Echo</a> zum Hinzufügen von "
|
|
||||||
"Kommentaren auf Nachrichtenseiten."
|
|
@ -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 <https://translatewiki.net/wiki/Portal:es>\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 <https://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 <a href=\"http://aboutecho.com/\">Echo</a> to add commenting to notice "
|
|
||||||
"pages."
|
|
||||||
msgstr ""
|
|
||||||
"Usar <a href=\"http://aboutecho.com/\">Echo</a> para añadir comentarios a "
|
|
||||||
"las páginas de mensajes."
|
|
@ -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 <https://translatewiki.net/wiki/Portal:eu>\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 <https://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 <a href=\"http://aboutecho.com/\">Echo</a> to add commenting to notice "
|
|
||||||
"pages."
|
|
||||||
msgstr ""
|
|
||||||
"Erabili <a href=\"http://aboutecho.com/\">Echo</a> oharren orriei iruzkinak "
|
|
||||||
"gehitzeko."
|
|
@ -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 <https://translatewiki.net/wiki/Portal:fi>\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 <https://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 <a href=\"http://aboutecho.com/\">Echo</a> to add commenting to notice "
|
|
||||||
"pages."
|
|
||||||
msgstr ""
|
|
||||||
"Lisää kommentointimahdollisuus ilmoitussivulle <a href=\"http://aboutecho."
|
|
||||||
"com/\">Echon</a> avulla."
|
|
@ -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 <https://translatewiki.net/wiki/Portal:fr>\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 <https://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 <a href=\"http://aboutecho.com/\">Echo</a> to add commenting to notice "
|
|
||||||
"pages."
|
|
||||||
msgstr ""
|
|
||||||
"Utilisez <a href=\"http://aboutecho.com/\">Echo</a> pour ajouter des "
|
|
||||||
"commentaires aux pages d’avis."
|
|
@ -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 <https://translatewiki.net/wiki/Portal:gl>\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 <https://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 <a href=\"http://aboutecho.com/\">Echo</a> to add commenting to notice "
|
|
||||||
"pages."
|
|
||||||
msgstr ""
|
|
||||||
"Usa <a href=\"http://aboutecho.com/\">Echo</a> para engadir comentarios ás "
|
|
||||||
"páxinas das notas."
|
|
@ -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 <https://translatewiki.net/wiki/Portal:he>\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 <https://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 <a href=\"http://aboutecho.com/\">Echo</a> to add commenting to notice "
|
|
||||||
"pages."
|
|
||||||
msgstr ""
|
|
||||||
"להשתמש ב־<a href=\"http://aboutecho.com/\">Echo</a> כדי להוסיף הערות לדפי "
|
|
||||||
"עדכון."
|
|
@ -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 <https://translatewiki.net/wiki/Portal:ia>\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 <https://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 <a href=\"http://aboutecho.com/\">Echo</a> to add commenting to notice "
|
|
||||||
"pages."
|
|
||||||
msgstr ""
|
|
||||||
"Usar <a href=\"http://aboutecho.com/\">Echo</a> pro adder le possibilitate "
|
|
||||||
"de commentar a paginas de notas."
|
|
@ -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 <https://translatewiki.net/wiki/Portal:id>\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 <https://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 <a href=\"http://aboutecho.com/\">Echo</a> to add commenting to notice "
|
|
||||||
"pages."
|
|
||||||
msgstr ""
|
|
||||||
"Gunakan <a href=\"http://aboutecho.com/\">Echo</a> untuk menambahkan "
|
|
||||||
"komentar ke halaman pemberitahuan."
|
|
@ -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 <https://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 <a href=\"http://aboutecho.com/\">Echo</a> to add commenting to notice "
|
|
||||||
"pages."
|
|
||||||
msgstr ""
|
|
||||||
"Utilizza <a href=\"http://aboutecho.com/\">Echo</a> per aggiungere commenti "
|
|
||||||
"alle pagine delle notizie."
|
|
@ -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 <https://translatewiki.net/wiki/Portal:lb>\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 <https://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 <a href=\"http://aboutecho.com/\">Echo</a> to add commenting to notice "
|
|
||||||
"pages."
|
|
||||||
msgstr ""
|
|
||||||
"Benotzt <a href=\"http://aboutecho.com/\">Echo</a> fir Bemierkungen op "
|
|
||||||
"Noriichtesäiten dobäizesetzen."
|
|
@ -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 <https://translatewiki.net/wiki/Portal:mk>\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 <https://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 <a href=\"http://aboutecho.com/\">Echo</a> to add commenting to notice "
|
|
||||||
"pages."
|
|
||||||
msgstr ""
|
|
||||||
"Користи <a href=\"http://aboutecho.com/\">Echo</a> за додавање на коментари "
|
|
||||||
"во страници со забелешки."
|
|
@ -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 <https://translatewiki.net/wiki/Portal:nb>\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 <https://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 <a href=\"http://aboutecho.com/\">Echo</a> to add commenting to notice "
|
|
||||||
"pages."
|
|
||||||
msgstr ""
|
|
||||||
"Bruk <a href=\"http://aboutecho.com/\">Echo</a> til å legge kommentering til "
|
|
||||||
"notissider."
|
|
@ -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 <https://translatewiki.net/wiki/Portal:nl>\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 <https://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 <a href=\"http://aboutecho.com/\">Echo</a> to add commenting to notice "
|
|
||||||
"pages."
|
|
||||||
msgstr ""
|
|
||||||
"<a href=\"http://aboutecho.com/\">Echo</a> gebruiken om opmerkingen toe te "
|
|
||||||
"voegen aan mededelingenpagina's."
|
|
@ -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 <https://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 <a href=\"http://aboutecho.com/\">Echo</a> to add commenting to notice "
|
|
||||||
"pages."
|
|
||||||
msgstr ""
|
|
||||||
"<a href=\"http://aboutecho.com/\">Echo</a> umożliwia dodawanie komentarzy do "
|
|
||||||
"stron ogłoszeń."
|
|
@ -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 <https://translatewiki.net/wiki/Portal:pt>\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 <https://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 <a href=\"http://aboutecho.com/\">Echo</a> to add commenting to notice "
|
|
||||||
"pages."
|
|
||||||
msgstr ""
|
|
||||||
"Use o <a href=\"http://aboutecho.com/\">Echo</a> para adicionar comentários "
|
|
||||||
"às páginas de notas."
|
|
@ -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 <https://translatewiki.net/wiki/Portal:"
|
|
||||||
"pt-br>\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 <https://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 <a href=\"http://aboutecho.com/\">Echo</a> to add commenting to notice "
|
|
||||||
"pages."
|
|
||||||
msgstr ""
|
|
||||||
"Use o <a href=\"http://aboutecho.com/\">Echo</a> para adicionar comentários "
|
|
||||||
"às páginas de notas."
|
|
@ -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 <https://translatewiki.net/wiki/Portal:ru>\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 <https://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 <a href=\"http://aboutecho.com/\">Echo</a> to add commenting to notice "
|
|
||||||
"pages."
|
|
||||||
msgstr ""
|
|
||||||
"Использование <a href=\"http://aboutecho.com/\">Echo</a> для добавления "
|
|
||||||
"комментариев на страницы уведомления."
|
|
@ -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 <https://translatewiki.net/wiki/Portal:tl>\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 <https://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 <a href=\"http://aboutecho.com/\">Echo</a> to add commenting to notice "
|
|
||||||
"pages."
|
|
||||||
msgstr ""
|
|
||||||
"Gamitin ang <a href=\"http://aboutecho.com/\">Echo</a> upang magdagdag ng "
|
|
||||||
"pagpuna sa mga pahina ng pabatid."
|
|
@ -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 <https://translatewiki.net/wiki/Portal:uk>\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 <https://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 <a href=\"http://aboutecho.com/\">Echo</a> to add commenting to notice "
|
|
||||||
"pages."
|
|
||||||
msgstr ""
|
|
||||||
"Використання <a href=\"http://aboutecho.com/\">Echo</a> для коментування "
|
|
||||||
"дописів."
|
|
@ -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 <https://translatewiki.net/wiki/Portal:zh-"
|
|
||||||
"hans>\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 <https://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 <a href=\"http://aboutecho.com/\">Echo</a> to add commenting to notice "
|
|
||||||
"pages."
|
|
||||||
msgstr "使用<a href=\"http://aboutecho.com/\">Echo</a>在消息页中添加评论。"
|
|
Loading…
Reference in New Issue
Block a user