Meh, let's just remove FirePHP, I don't think anyone uses it
This commit is contained in:
parent
dfc11f99ad
commit
7c80c9a1f9
@ -1,72 +0,0 @@
|
|||||||
<?php
|
|
||||||
/*
|
|
||||||
* StatusNet Plugin: 0.9
|
|
||||||
* Plugin Name: FirePHP
|
|
||||||
* Description: Sends StatusNet log output to FirePHP
|
|
||||||
* Version: 0.1
|
|
||||||
* Author: Craig Andrews <candrews@integralblue.com>
|
|
||||||
* Author URI: http://candrews.integralblue.com/
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* StatusNet - the distributed open-source microblogging tool
|
|
||||||
* Copyright (C) 2009, StatusNet, Inc.
|
|
||||||
*
|
|
||||||
* 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 MinifyPlugin
|
|
||||||
* @maintainer Craig Andrews <candrews@integralblue.com>
|
|
||||||
* @author Craig Andrews <candrews@integralblue.com>
|
|
||||||
* @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
|
|
||||||
* @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); }
|
|
||||||
|
|
||||||
// We bundle the FirePHP library...
|
|
||||||
set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/extlib/FirePHP/lib');
|
|
||||||
|
|
||||||
class FirePHPPlugin extends Plugin
|
|
||||||
{
|
|
||||||
private $firephp;
|
|
||||||
|
|
||||||
function onInitializePlugin()
|
|
||||||
{
|
|
||||||
//Output buffering has to be enabled so FirePHP can send the HTTP headers it needs
|
|
||||||
ob_start();
|
|
||||||
require_once('FirePHPCore/FirePHP.class.php');
|
|
||||||
$this->firephp = FirePHP::getInstance(true);
|
|
||||||
}
|
|
||||||
|
|
||||||
function onStartLog(&$priority, &$msg, &$filename)
|
|
||||||
{
|
|
||||||
static $firephp_priorities = array(FirePHP::ERROR, FirePHP::ERROR, FirePHP::ERROR, FirePHP::ERROR,
|
|
||||||
FirePHP::WARN, FirePHP::LOG, FirePHP::LOG, FirePHP::INFO);
|
|
||||||
$fp_priority = $firephp_priorities[$priority];
|
|
||||||
$this->firephp->fb($msg, $fp_priority);
|
|
||||||
}
|
|
||||||
|
|
||||||
function onPluginVersion(array &$versions)
|
|
||||||
{
|
|
||||||
$versions[] = array('name' => 'FirePHP',
|
|
||||||
'version' => GNUSOCIAL_VERSION,
|
|
||||||
'author' => 'Craig Andrews',
|
|
||||||
'homepage' => 'http://status.net/wiki/Plugin:FirePHP',
|
|
||||||
'rawdescription' =>
|
|
||||||
// TRANS: Plugin description.
|
|
||||||
_m('The FirePHP plugin writes StatusNet\'s log output to FirePHP.'));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,21 +0,0 @@
|
|||||||
The FirePHP plugin writes StatusNet's log output to FirePHP.
|
|
||||||
|
|
||||||
Using FirePHP on production sites can expose sensitive information.
|
|
||||||
|
|
||||||
You must protect the security of your application by disabling FirePHP logging
|
|
||||||
on your live site!
|
|
||||||
|
|
||||||
Installation
|
|
||||||
============
|
|
||||||
add "addPlugin('FirePHP',
|
|
||||||
array('setting'=>'value', 'setting2'=>'value2', ...);"
|
|
||||||
to the bottom of your config.php
|
|
||||||
|
|
||||||
Settings
|
|
||||||
========
|
|
||||||
None at the moment.
|
|
||||||
|
|
||||||
Example
|
|
||||||
=======
|
|
||||||
|
|
||||||
addPlugin('FirePHP', array());
|
|
@ -1,171 +0,0 @@
|
|||||||
|
|
||||||
TODO:
|
|
||||||
|
|
||||||
* Fix code indenting in PHP 4 code
|
|
||||||
* Port maxDepth option to PHP 4 code
|
|
||||||
|
|
||||||
2013-04-23 - Release Version: 0.4.0
|
|
||||||
|
|
||||||
* No changes
|
|
||||||
|
|
||||||
2011-06-22 - Release Version: 0.4.0rc3
|
|
||||||
|
|
||||||
* Build fixes
|
|
||||||
|
|
||||||
2011-06-20 - Release Version: 0.4.0rc1
|
|
||||||
|
|
||||||
* (Issue 163) PHP5 class_exists() throws Exception without second parameter
|
|
||||||
* (Issue 166) Non-utf8 array values replaced with null
|
|
||||||
* Cleaned up code formatting [sokolov.innokenty@gmail.com]
|
|
||||||
* Ensure JSON keys are never NULL (due to NULL key in some arrays)
|
|
||||||
* Better UTF-8 encoding detection
|
|
||||||
* Code style cleanup (qbbr)
|
|
||||||
* Changed license to MIT
|
|
||||||
* Refactored project
|
|
||||||
|
|
||||||
2010-10-26 - Release Version: 0.3.2
|
|
||||||
|
|
||||||
2010-10-12 - Release Version: 0.3.2rc6
|
|
||||||
|
|
||||||
* (Issue 154) getRequestHeader uses "getallheaders" even though it doesn't always exist. [25m]
|
|
||||||
|
|
||||||
2010-10-09 - Release Version: 0.3.2rc5
|
|
||||||
|
|
||||||
* (Issue 153) FirePHP incorrectly double-encodes UTF8 when mbstring.func_overload is enabled
|
|
||||||
|
|
||||||
2010-10-08 - Release Version: 0.3.2rc4
|
|
||||||
|
|
||||||
* Trigger upgrade message if part of FirePHP 1.0
|
|
||||||
* Removed FirePHP/Init.php inclusion logic and only load FirePHP.class.php if not already loaded
|
|
||||||
|
|
||||||
2010-07-19 - Release Version: 0.3.2rc3
|
|
||||||
|
|
||||||
* Fixed FirePHP/Init.php inclusion logic
|
|
||||||
|
|
||||||
2010-07-19 - Release Version: 0.3.2rc2
|
|
||||||
|
|
||||||
* (Issue 145) maxDepth option
|
|
||||||
* Changed maxObjectDepth and maxArrayDepth option defaults to 5
|
|
||||||
* Fixed code indentation
|
|
||||||
|
|
||||||
2010-03-05 - Release Version: 0.3.2rc1
|
|
||||||
|
|
||||||
* (Issue 114) Allow options to be passed on to basic logging wrappers
|
|
||||||
* (Issue 122) Filter objectStack property of FirePHP class
|
|
||||||
* (Issue 123) registerErrorHandler(false) by default
|
|
||||||
* Added setOption() and getOption() methods
|
|
||||||
* (Issue 117) dump() method argument validation
|
|
||||||
* Started adding PHPUnit tests
|
|
||||||
* Some refactoring to support unit testing
|
|
||||||
* Deprecated setProcessorUrl() and setRendererUrl()
|
|
||||||
* Check User-Agent and X-FirePHP-Version header to detect FirePHP on client
|
|
||||||
* (Issue 135) FirePHP 0.4.3 with Firebug 1.5 changes user agent on the fly
|
|
||||||
* (Issue 112) Error Predefined Constants Not available for PHP 5.x versions
|
|
||||||
|
|
||||||
2008-06-14 - Release Version: 0.3.1
|
|
||||||
|
|
||||||
* (Issue 108) ignore class name case in object filter
|
|
||||||
|
|
||||||
2009-05-11 - Release Version: 0.3
|
|
||||||
2009-05-01 - Release Version: 0.3.rc.1
|
|
||||||
|
|
||||||
* (Issue 90) PHP4 compatible version of FirePHPCore
|
|
||||||
* (Issue 98) Thrown exceptions don't send an HTTP 500 if the FirePHP exception handler is enabled
|
|
||||||
* (Issue 85) Support associative arrays in encodeTable method in FirePHP.class.php
|
|
||||||
* (Issue 66) Add a new getOptions() public method in API
|
|
||||||
* (Issue 82) Define $this->options outside of __construct
|
|
||||||
* (Issue 72) Message error if group name is null
|
|
||||||
* (Issue 68) registerErrorHandler() and registerExceptionHandler() should returns previous handlers defined
|
|
||||||
* (Issue 69) Add the missing register handler in the triumvirate (error, exception, assert)
|
|
||||||
* (Issue 75) [Error & Exception Handling] Option to not exit script execution
|
|
||||||
* (Issue 83) Exception handler can't throw exceptions
|
|
||||||
* (Issue 80) Auto/Pre collapsing groups AND Custom group row colors
|
|
||||||
|
|
||||||
2008-11-09 - Release Version: 0.2.1
|
|
||||||
|
|
||||||
* (Issue 70) Problem when logging resources
|
|
||||||
|
|
||||||
2008-10-21 - Release Version: 0.2.0
|
|
||||||
|
|
||||||
* Updated version to 0.2.0
|
|
||||||
* Switched to using __sleep instead of __wakeup
|
|
||||||
* Added support to exclude object members when encoding
|
|
||||||
* Add support to enable/disable logging
|
|
||||||
|
|
||||||
2008-10-17 - Release Version: 0.2.b.8
|
|
||||||
|
|
||||||
* New implementation for is_utf8()
|
|
||||||
* (Issue 55) maxObjectDepth Option not working correctly when using TABLE and EXCEPTION Type
|
|
||||||
* Bugfix for max[Object|Array]Depth when encoding nested array/object graphs
|
|
||||||
* Bugfix for FB::setOptions()
|
|
||||||
|
|
||||||
2008-10-16 - Release Version: 0.2.b.7
|
|
||||||
|
|
||||||
* (Issue 45) Truncate dump when string have non utf8 cars
|
|
||||||
* (Issue 52) logging will not work when firephp object gets stored in the session.
|
|
||||||
|
|
||||||
2008-10-16 - Release Version: 0.2.b.6
|
|
||||||
|
|
||||||
* (Issue 37) Display file and line information for each log message
|
|
||||||
* (Issue 51) Limit output of object graphs
|
|
||||||
* Bugfix for encoding object members set to NULL|false|''
|
|
||||||
|
|
||||||
2008-10-14 - Release Version: 0.2.b.5
|
|
||||||
|
|
||||||
* Updated JsonStream wildfire protocol to be more robust
|
|
||||||
* (Issue 33) PHP error notices running demos
|
|
||||||
* (Issue 48) Warning: ReflectionProperty::getValue() expects exactly 1 parameter, 0 given
|
|
||||||
|
|
||||||
2008-10-08 - Release Version: 0.2.b.4
|
|
||||||
|
|
||||||
* Bugfix for logging objects with recursion
|
|
||||||
|
|
||||||
2008-10-08 - Release Version: 0.2.b.3
|
|
||||||
|
|
||||||
* (Issue 43) Notice message in 0.2b2
|
|
||||||
* Added support for PHP's native json_encode() if available
|
|
||||||
* Revised object encoder to detect object recursion
|
|
||||||
|
|
||||||
2008-10-07 - Release Version: 0.2.b.2
|
|
||||||
|
|
||||||
* (Issue 28) Need solution for logging private and protected object variables
|
|
||||||
* Added trace() and table() aliases in FirePHP class
|
|
||||||
* (Issue 41) Use PHP doc in FirePHP
|
|
||||||
* (Issue 39) Static logging method for object oriented API
|
|
||||||
|
|
||||||
2008-10-01 - Release Version: 0.2.b.1
|
|
||||||
|
|
||||||
* Added support for error and exception handling
|
|
||||||
* Updated min PHP version for PEAR package to 5.2
|
|
||||||
* Added version constant for library
|
|
||||||
* Gave server library it's own wildfire plugin namespace
|
|
||||||
* Migrated communication protocol to Wildfire JsonStream
|
|
||||||
* Added support for console groups using "group" and "groupEnd"
|
|
||||||
* Added support for log, info, warn and error logging aliases
|
|
||||||
* (Issue 29) problem with TRACE when using with error_handler
|
|
||||||
* (Issue 33) PHP error notices running demos
|
|
||||||
* (Issue 12) undefined index php notice
|
|
||||||
* Removed closing ?> php tags
|
|
||||||
* (Issue 13) the code in the fb() function has a second return statement that will never be reached
|
|
||||||
|
|
||||||
2008-07-30 - Release Version: 0.1.1.3
|
|
||||||
|
|
||||||
* Include __className property in JSON string if variable was an object
|
|
||||||
* Bugfix - Mis-spelt "Exception" in JSON encoding code
|
|
||||||
|
|
||||||
2008-06-13 - Release Version: 0.1.1.1
|
|
||||||
|
|
||||||
* Bugfix - Standardize windows paths in stack traces
|
|
||||||
* Bugfix - Display correct stack trace info in windows environments
|
|
||||||
* Bugfix - Check $_SERVER['HTTP_USER_AGENT'] before returning
|
|
||||||
|
|
||||||
2008-06-13 - Release Version: 0.1.1
|
|
||||||
|
|
||||||
* Added support for FirePHP::TRACE log style
|
|
||||||
* Changed license to New BSD License
|
|
||||||
|
|
||||||
2008-06-06 - Release Version: 0.0.2
|
|
||||||
|
|
||||||
* Bugfix - Added usleep() to header writing loop to ensure unique index
|
|
||||||
* Bugfix - Ensure chunk_split does not generate trailing "\n" with empty data header
|
|
||||||
* Added support for FirePHP::TABLE log style
|
|
@ -1,75 +0,0 @@
|
|||||||
FirePHPCore
|
|
||||||
===========
|
|
||||||
|
|
||||||
**Status: stable**
|
|
||||||
|
|
||||||
> **FirePHP is an advanced logging system that can display PHP variables in the browser as an application is navigated.**
|
|
||||||
> All communication is out of band to the application meaning that the logging data will not interfere with the normal functioning of the application.
|
|
||||||
|
|
||||||
This project contains the *FirePHPCore* PHP server library and provides a development environment (see `./workspace/`) for working on *FirePHPCore*.
|
|
||||||
|
|
||||||
|
|
||||||
Usage
|
|
||||||
=====
|
|
||||||
|
|
||||||
See [Install/Traditional: FirePHPCore](http://docs.sourcemint.org/firephp.org/firephp/1/-docs/Configuration/Traditional) in the
|
|
||||||
[FirePHP 1.0 Documentation](http://docs.sourcemint.org/firephp.org/firephp/1/-docs/).
|
|
||||||
|
|
||||||
|
|
||||||
Testing
|
|
||||||
=======
|
|
||||||
|
|
||||||
cd tests
|
|
||||||
phpunit .
|
|
||||||
|
|
||||||
|
|
||||||
Support & Feedback
|
|
||||||
==================
|
|
||||||
|
|
||||||
See [Support](http://docs.sourcemint.org/firephp.org/firephp/1/-docs/OpenSource#support) in the [FirePHP 1.0 Documentation](http://docs.sourcemint.org/firephp.org/firephp/1/-docs/).
|
|
||||||
|
|
||||||
|
|
||||||
Contribute
|
|
||||||
==========
|
|
||||||
|
|
||||||
See [Contribute](http://docs.sourcemint.org/firephp.org/firephp/1/-docs/OpenSource#contribute) in the [FirePHP 1.0 Documentation](http://docs.sourcemint.org/firephp.org/firephp/1/-docs/).
|
|
||||||
|
|
||||||
|
|
||||||
Author
|
|
||||||
======
|
|
||||||
|
|
||||||
This project is authored and maintained by [Christoph Dorn](http://www.christophdorn.com/).
|
|
||||||
|
|
||||||
|
|
||||||
Documentation License
|
|
||||||
=====================
|
|
||||||
|
|
||||||
[Creative Commons Attribution-NonCommercial-ShareAlike 3.0](http://creativecommons.org/licenses/by-nc-sa/3.0/)
|
|
||||||
|
|
||||||
Copyright (c) 2007+ [Christoph Dorn](http://www.christophdorn.com/)
|
|
||||||
|
|
||||||
|
|
||||||
Code License
|
|
||||||
============
|
|
||||||
|
|
||||||
[MIT License](http://www.opensource.org/licenses/mit-license.php)
|
|
||||||
|
|
||||||
Copyright (c) 2007+ [Christoph Dorn](http://www.christophdorn.com/)
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in
|
|
||||||
all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
||||||
THE SOFTWARE.
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,29 +0,0 @@
|
|||||||
Software License Agreement (New BSD License)
|
|
||||||
|
|
||||||
Copyright (c) 2006-2009, Christoph Dorn
|
|
||||||
All rights reserved.
|
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without modification,
|
|
||||||
are permitted provided that the following conditions are met:
|
|
||||||
|
|
||||||
* Redistributions of source code must retain the above copyright notice,
|
|
||||||
this list of conditions and the following disclaimer.
|
|
||||||
|
|
||||||
* Redistributions in binary form must reproduce the above copyright notice,
|
|
||||||
this list of conditions and the following disclaimer in the documentation
|
|
||||||
and/or other materials provided with the distribution.
|
|
||||||
|
|
||||||
* Neither the name of Christoph Dorn nor the names of its
|
|
||||||
contributors may be used to endorse or promote products derived from this
|
|
||||||
software without specific prior written permission.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
||||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
||||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
||||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
|
||||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
||||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
||||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
||||||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
||||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
||||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@ -1,275 +0,0 @@
|
|||||||
<?php
|
|
||||||
// Authors:
|
|
||||||
// - cadorn, Christoph Dorn <christoph@christophdorn.com>, Copyright 2007, New BSD License
|
|
||||||
// - qbbr, Sokolov Innokenty <sokolov.innokenty@gmail.com>, Copyright 2011, New BSD License
|
|
||||||
// - cadorn, Christoph Dorn <christoph@christophdorn.com>, Copyright 2011, MIT License
|
|
||||||
|
|
||||||
/**
|
|
||||||
* ***** BEGIN LICENSE BLOCK *****
|
|
||||||
*
|
|
||||||
* [MIT License](http://www.opensource.org/licenses/mit-license.php)
|
|
||||||
*
|
|
||||||
* Copyright (c) 2007+ [Christoph Dorn](http://www.christophdorn.com/)
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
* of this software and associated documentation files (the "Software"), to deal
|
|
||||||
* in the Software without restriction, including without limitation the rights
|
|
||||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
* copies of the Software, and to permit persons to whom the Software is
|
|
||||||
* furnished to do so, subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be included in
|
|
||||||
* all copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
||||||
* THE SOFTWARE.
|
|
||||||
*
|
|
||||||
* ***** END LICENSE BLOCK *****
|
|
||||||
*
|
|
||||||
* @copyright Copyright (C) 2007+ Christoph Dorn
|
|
||||||
* @author Christoph Dorn <christoph@christophdorn.com>
|
|
||||||
* @license [MIT License](http://www.opensource.org/licenses/mit-license.php)
|
|
||||||
* @package FirePHPCore
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (!class_exists('FirePHP', false)) {
|
|
||||||
require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'FirePHP.class.php';
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sends the given data to the FirePHP Firefox Extension.
|
|
||||||
* The data can be displayed in the Firebug Console or in the
|
|
||||||
* "Server" request tab.
|
|
||||||
*
|
|
||||||
* @see http://www.firephp.org/Wiki/Reference/Fb
|
|
||||||
* @param mixed $Object
|
|
||||||
* @return true
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
function fb()
|
|
||||||
{
|
|
||||||
$instance = FirePHP::getInstance(true);
|
|
||||||
|
|
||||||
$args = func_get_args();
|
|
||||||
return call_user_func_array(array($instance, 'fb'), $args);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
class FB
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Set an Insight console to direct all logging calls to
|
|
||||||
*
|
|
||||||
* @param object $console The console object to log to
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public static function setLogToInsightConsole($console)
|
|
||||||
{
|
|
||||||
FirePHP::getInstance(true)->setLogToInsightConsole($console);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Enable and disable logging to Firebug
|
|
||||||
*
|
|
||||||
* @see FirePHP->setEnabled()
|
|
||||||
* @param boolean $enabled TRUE to enable, FALSE to disable
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public static function setEnabled($enabled)
|
|
||||||
{
|
|
||||||
FirePHP::getInstance(true)->setEnabled($enabled);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Check if logging is enabled
|
|
||||||
*
|
|
||||||
* @see FirePHP->getEnabled()
|
|
||||||
* @return boolean TRUE if enabled
|
|
||||||
*/
|
|
||||||
public static function getEnabled()
|
|
||||||
{
|
|
||||||
return FirePHP::getInstance(true)->getEnabled();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Specify a filter to be used when encoding an object
|
|
||||||
*
|
|
||||||
* Filters are used to exclude object members.
|
|
||||||
*
|
|
||||||
* @see FirePHP->setObjectFilter()
|
|
||||||
* @param string $class The class name of the object
|
|
||||||
* @param array $filter An array or members to exclude
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public static function setObjectFilter($class, $filter)
|
|
||||||
{
|
|
||||||
FirePHP::getInstance(true)->setObjectFilter($class, $filter);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set some options for the library
|
|
||||||
*
|
|
||||||
* @see FirePHP->setOptions()
|
|
||||||
* @param array $options The options to be set
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public static function setOptions($options)
|
|
||||||
{
|
|
||||||
FirePHP::getInstance(true)->setOptions($options);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get options for the library
|
|
||||||
*
|
|
||||||
* @see FirePHP->getOptions()
|
|
||||||
* @return array The options
|
|
||||||
*/
|
|
||||||
public static function getOptions()
|
|
||||||
{
|
|
||||||
return FirePHP::getInstance(true)->getOptions();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Log object to firebug
|
|
||||||
*
|
|
||||||
* @see http://www.firephp.org/Wiki/Reference/Fb
|
|
||||||
* @param mixed $object
|
|
||||||
* @return true
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public static function send()
|
|
||||||
{
|
|
||||||
$args = func_get_args();
|
|
||||||
return call_user_func_array(array(FirePHP::getInstance(true), 'fb'), $args);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Start a group for following messages
|
|
||||||
*
|
|
||||||
* Options:
|
|
||||||
* Collapsed: [true|false]
|
|
||||||
* Color: [#RRGGBB|ColorName]
|
|
||||||
*
|
|
||||||
* @param string $name
|
|
||||||
* @param array $options OPTIONAL Instructions on how to log the group
|
|
||||||
* @return true
|
|
||||||
*/
|
|
||||||
public static function group($name, $options=null)
|
|
||||||
{
|
|
||||||
return FirePHP::getInstance(true)->group($name, $options);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ends a group you have started before
|
|
||||||
*
|
|
||||||
* @return true
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public static function groupEnd()
|
|
||||||
{
|
|
||||||
return self::send(null, null, FirePHP::GROUP_END);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Log object with label to firebug console
|
|
||||||
*
|
|
||||||
* @see FirePHP::LOG
|
|
||||||
* @param mixes $object
|
|
||||||
* @param string $label
|
|
||||||
* @return true
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public static function log($object, $label=null)
|
|
||||||
{
|
|
||||||
return self::send($object, $label, FirePHP::LOG);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Log object with label to firebug console
|
|
||||||
*
|
|
||||||
* @see FirePHP::INFO
|
|
||||||
* @param mixes $object
|
|
||||||
* @param string $label
|
|
||||||
* @return true
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public static function info($object, $label=null)
|
|
||||||
{
|
|
||||||
return self::send($object, $label, FirePHP::INFO);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Log object with label to firebug console
|
|
||||||
*
|
|
||||||
* @see FirePHP::WARN
|
|
||||||
* @param mixes $object
|
|
||||||
* @param string $label
|
|
||||||
* @return true
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public static function warn($object, $label=null)
|
|
||||||
{
|
|
||||||
return self::send($object, $label, FirePHP::WARN);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Log object with label to firebug console
|
|
||||||
*
|
|
||||||
* @see FirePHP::ERROR
|
|
||||||
* @param mixes $object
|
|
||||||
* @param string $label
|
|
||||||
* @return true
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public static function error($object, $label=null)
|
|
||||||
{
|
|
||||||
return self::send($object, $label, FirePHP::ERROR);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dumps key and variable to firebug server panel
|
|
||||||
*
|
|
||||||
* @see FirePHP::DUMP
|
|
||||||
* @param string $key
|
|
||||||
* @param mixed $variable
|
|
||||||
* @return true
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public static function dump($key, $variable)
|
|
||||||
{
|
|
||||||
return self::send($variable, $key, FirePHP::DUMP);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Log a trace in the firebug console
|
|
||||||
*
|
|
||||||
* @see FirePHP::TRACE
|
|
||||||
* @param string $label
|
|
||||||
* @return true
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public static function trace($label)
|
|
||||||
{
|
|
||||||
return self::send($label, FirePHP::TRACE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Log a table in the firebug console
|
|
||||||
*
|
|
||||||
* @see FirePHP::TABLE
|
|
||||||
* @param string $label
|
|
||||||
* @param string $table
|
|
||||||
* @return true
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public static function table($label, $table)
|
|
||||||
{
|
|
||||||
return self::send($table, $label, FirePHP::TABLE);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,245 +0,0 @@
|
|||||||
<?php
|
|
||||||
// Authors:
|
|
||||||
// - cadorn, Christoph Dorn <christoph@christophdorn.com>, Copyright 2007, New BSD License
|
|
||||||
// - qbbr, Michael Day <manveru.alma@gmail.com>, Copyright 2008, New BSD License
|
|
||||||
// - cadorn, Christoph Dorn <christoph@christophdorn.com>, Copyright 2011, MIT License
|
|
||||||
|
|
||||||
/* ***** BEGIN LICENSE BLOCK *****
|
|
||||||
*
|
|
||||||
* [MIT License](http://www.opensource.org/licenses/mit-license.php)
|
|
||||||
*
|
|
||||||
* Copyright (c) 2007+ [Christoph Dorn](http://www.christophdorn.com/)
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
* of this software and associated documentation files (the "Software"), to deal
|
|
||||||
* in the Software without restriction, including without limitation the rights
|
|
||||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
* copies of the Software, and to permit persons to whom the Software is
|
|
||||||
* furnished to do so, subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be included in
|
|
||||||
* all copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
||||||
* THE SOFTWARE.
|
|
||||||
*
|
|
||||||
* ***** END LICENSE BLOCK *****
|
|
||||||
*
|
|
||||||
* @copyright Copyright (C) 2007+ Christoph Dorn
|
|
||||||
* @author Christoph Dorn <christoph@christophdorn.com>
|
|
||||||
* @author Michael Day <manveru.alma@gmail.com>
|
|
||||||
* @license [MIT License](http://www.opensource.org/licenses/mit-license.php)
|
|
||||||
* @package FirePHPCore
|
|
||||||
*/
|
|
||||||
|
|
||||||
require_once dirname(__FILE__).'/FirePHP.class.php4';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sends the given data to the FirePHP Firefox Extension.
|
|
||||||
* The data can be displayed in the Firebug Console or in the
|
|
||||||
* "Server" request tab.
|
|
||||||
*
|
|
||||||
* @see http://www.firephp.org/Wiki/Reference/Fb
|
|
||||||
* @param mixed $Object
|
|
||||||
* @return true
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
function fb()
|
|
||||||
{
|
|
||||||
$instance =& FirePHP::getInstance(true);
|
|
||||||
|
|
||||||
$args = func_get_args();
|
|
||||||
return call_user_func_array(array(&$instance,'fb'),$args);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
class FB
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Enable and disable logging to Firebug
|
|
||||||
*
|
|
||||||
* @see FirePHP->setEnabled()
|
|
||||||
* @param boolean $Enabled TRUE to enable, FALSE to disable
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
function setEnabled($Enabled) {
|
|
||||||
$instance =& FirePHP::getInstance(true);
|
|
||||||
$instance->setEnabled($Enabled);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Check if logging is enabled
|
|
||||||
*
|
|
||||||
* @see FirePHP->getEnabled()
|
|
||||||
* @return boolean TRUE if enabled
|
|
||||||
*/
|
|
||||||
function getEnabled() {
|
|
||||||
$instance =& FirePHP::getInstance(true);
|
|
||||||
return $instance->getEnabled();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Specify a filter to be used when encoding an object
|
|
||||||
*
|
|
||||||
* Filters are used to exclude object members.
|
|
||||||
*
|
|
||||||
* @see FirePHP->setObjectFilter()
|
|
||||||
* @param string $Class The class name of the object
|
|
||||||
* @param array $Filter An array or members to exclude
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
function setObjectFilter($Class, $Filter) {
|
|
||||||
$instance =& FirePHP::getInstance(true);
|
|
||||||
$instance->setObjectFilter($Class, $Filter);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set some options for the library
|
|
||||||
*
|
|
||||||
* @see FirePHP->setOptions()
|
|
||||||
* @param array $Options The options to be set
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
function setOptions($Options) {
|
|
||||||
$instance =& FirePHP::getInstance(true);
|
|
||||||
$instance->setOptions($Options);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get options for the library
|
|
||||||
*
|
|
||||||
* @see FirePHP->getOptions()
|
|
||||||
* @return array The options
|
|
||||||
*/
|
|
||||||
function getOptions() {
|
|
||||||
$instance =& FirePHP::getInstance(true);
|
|
||||||
return $instance->getOptions();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Log object to firebug
|
|
||||||
*
|
|
||||||
* @see http://www.firephp.org/Wiki/Reference/Fb
|
|
||||||
* @param mixed $Object
|
|
||||||
* @return true
|
|
||||||
*/
|
|
||||||
function send()
|
|
||||||
{
|
|
||||||
$instance =& FirePHP::getInstance(true);
|
|
||||||
$args = func_get_args();
|
|
||||||
return call_user_func_array(array(&$instance,'fb'),$args);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Start a group for following messages
|
|
||||||
*
|
|
||||||
* Options:
|
|
||||||
* Collapsed: [true|false]
|
|
||||||
* Color: [#RRGGBB|ColorName]
|
|
||||||
*
|
|
||||||
* @param string $Name
|
|
||||||
* @param array $Options OPTIONAL Instructions on how to log the group
|
|
||||||
* @return true
|
|
||||||
*/
|
|
||||||
function group($Name, $Options=null) {
|
|
||||||
$instance =& FirePHP::getInstance(true);
|
|
||||||
return $instance->group($Name, $Options);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ends a group you have started before
|
|
||||||
*
|
|
||||||
* @return true
|
|
||||||
*/
|
|
||||||
function groupEnd() {
|
|
||||||
return FB::send(null, null, FirePHP_GROUP_END);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Log object with label to firebug console
|
|
||||||
*
|
|
||||||
* @see FirePHP::LOG
|
|
||||||
* @param mixes $Object
|
|
||||||
* @param string $Label
|
|
||||||
* @return true
|
|
||||||
*/
|
|
||||||
function log($Object, $Label=null) {
|
|
||||||
return FB::send($Object, $Label, FirePHP_LOG);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Log object with label to firebug console
|
|
||||||
*
|
|
||||||
* @see FirePHP::INFO
|
|
||||||
* @param mixes $Object
|
|
||||||
* @param string $Label
|
|
||||||
* @return true
|
|
||||||
*/
|
|
||||||
function info($Object, $Label=null) {
|
|
||||||
return FB::send($Object, $Label, FirePHP_INFO);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Log object with label to firebug console
|
|
||||||
*
|
|
||||||
* @see FirePHP::WARN
|
|
||||||
* @param mixes $Object
|
|
||||||
* @param string $Label
|
|
||||||
* @return true
|
|
||||||
*/
|
|
||||||
function warn($Object, $Label=null) {
|
|
||||||
return FB::send($Object, $Label, FirePHP_WARN);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Log object with label to firebug console
|
|
||||||
*
|
|
||||||
* @see FirePHP::ERROR
|
|
||||||
* @param mixes $Object
|
|
||||||
* @param string $Label
|
|
||||||
* @return true
|
|
||||||
*/
|
|
||||||
function error($Object, $Label=null) {
|
|
||||||
return FB::send($Object, $Label, FirePHP_ERROR);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dumps key and variable to firebug server panel
|
|
||||||
*
|
|
||||||
* @see FirePHP::DUMP
|
|
||||||
* @param string $Key
|
|
||||||
* @param mixed $Variable
|
|
||||||
* @return true
|
|
||||||
*/
|
|
||||||
function dump($Key, $Variable) {
|
|
||||||
return FB::send($Variable, $Key, FirePHP_DUMP);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Log a trace in the firebug console
|
|
||||||
*
|
|
||||||
* @see FirePHP::TRACE
|
|
||||||
* @param string $Label
|
|
||||||
* @return true
|
|
||||||
*/
|
|
||||||
function trace($Label) {
|
|
||||||
return FB::send($Label, FirePHP_TRACE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Log a table in the firebug console
|
|
||||||
*
|
|
||||||
* @see FirePHP::TABLE
|
|
||||||
* @param string $Label
|
|
||||||
* @param string $Table
|
|
||||||
* @return true
|
|
||||||
*/
|
|
||||||
function table($Label, $Table) {
|
|
||||||
return FB::send($Table, $Label, FirePHP_TABLE);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,23 +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: 2015-02-27 16:31+0100\n"
|
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
||||||
"Language: \n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=CHARSET\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Afrikaans (http://www.transifex.com/gnu-social/gnu-social/language/af/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: af\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Arabic (http://www.transifex.com/gnu-social/gnu-social/language/ar/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: ar\n"
|
|
||||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Arabic (Egypt) (http://www.transifex.com/gnu-social/gnu-social/language/ar_EG/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: ar_EG\n"
|
|
||||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Asturian (http://www.transifex.com/gnu-social/gnu-social/language/ast/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: ast\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Belarusian (Tarask) (http://www.transifex.com/gnu-social/gnu-social/language/be@tarask/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: be@tarask\n"
|
|
||||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Bulgarian (http://www.transifex.com/gnu-social/gnu-social/language/bg/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: bg\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Bengali (India) (http://www.transifex.com/gnu-social/gnu-social/language/bn_IN/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: bn_IN\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Breton (http://www.transifex.com/gnu-social/gnu-social/language/br/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: br\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:34+0000\n"
|
|
||||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
|
||||||
"Language-Team: Catalan (http://www.transifex.com/gnu-social/gnu-social/language/ca/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: ca\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr "El plugin de FirePHP escriu al StatusNet al registre de sortida del FirePHP."
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Czech (http://www.transifex.com/gnu-social/gnu-social/language/cs/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: cs\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Danish (http://www.transifex.com/gnu-social/gnu-social/language/da/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: da\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:34+0000\n"
|
|
||||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
|
||||||
"Language-Team: German (http://www.transifex.com/gnu-social/gnu-social/language/de/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: de\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr "Das FirePHP-Plugin schreibt die Konsolenausgabe von StatusNet an FirePHP."
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Greek (http://www.transifex.com/gnu-social/gnu-social/language/el/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: el\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Luke Hollins <luke@farcry.ca>, 2015
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-03-07 17:25+0000\n"
|
|
||||||
"Last-Translator: Luke Hollins <luke@farcry.ca>\n"
|
|
||||||
"Language-Team: English (United Kingdom) (http://www.transifex.com/gnu-social/gnu-social/language/en_GB/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: en_GB\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Esperanto (http://www.transifex.com/gnu-social/gnu-social/language/eo/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: eo\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Juan Riquelme González <soulchainer@gmail.com>, 2015
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-26 23:21+0000\n"
|
|
||||||
"Last-Translator: Juan Riquelme González <soulchainer@gmail.com>\n"
|
|
||||||
"Language-Team: Spanish (http://www.transifex.com/gnu-social/gnu-social/language/es/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: es\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr "El complemento FirePHP escribe la salida del registro de GNU social en FirePHP."
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:34+0000\n"
|
|
||||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
|
||||||
"Language-Team: Basque (http://www.transifex.com/gnu-social/gnu-social/language/eu/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: eu\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr "FirePHP pluginak StatusNeten erregistro irteera FirePHPn idazten du."
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Persian (http://www.transifex.com/gnu-social/gnu-social/language/fa/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: fa\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:34+0000\n"
|
|
||||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
|
||||||
"Language-Team: Finnish (http://www.transifex.com/gnu-social/gnu-social/language/fi/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: fi\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr "FirePHP-liitännäinen kirjoittaa StatusNetin tulosteen FirePHP:hen."
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:34+0000\n"
|
|
||||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
|
||||||
"Language-Team: French (http://www.transifex.com/gnu-social/gnu-social/language/fr/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: fr\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr "L’extension FirePHP écrit la sortie du journal de StatusNet dans FirePHP."
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Friulian (http://www.transifex.com/gnu-social/gnu-social/language/fur/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: fur\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:34+0000\n"
|
|
||||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
|
||||||
"Language-Team: Galician (http://www.transifex.com/gnu-social/gnu-social/language/gl/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: gl\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr "O complemento FirePHP escribe a saída do rexistro de StatusNet en FirePHP."
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:34+0000\n"
|
|
||||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
|
||||||
"Language-Team: Hebrew (http://www.transifex.com/gnu-social/gnu-social/language/he/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: he\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr "התוסף FirePHP כותב את פלט הרישום של StatusNet ל־FirePHP."
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Upper Sorbian (http://www.transifex.com/gnu-social/gnu-social/language/hsb/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: hsb\n"
|
|
||||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Hungarian (http://www.transifex.com/gnu-social/gnu-social/language/hu/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: hu\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Armenian (Armenia) (http://www.transifex.com/gnu-social/gnu-social/language/hy_AM/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: hy_AM\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:34+0000\n"
|
|
||||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
|
||||||
"Language-Team: Interlingua (http://www.transifex.com/gnu-social/gnu-social/language/ia/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: ia\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr "Le plug-in FirePHP transmitte le output del registro de StatusNet a FirePHP."
|
|
@ -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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# zk <zamani.karmana@gmail.com>, 2015
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-05-28 15:40+0000\n"
|
|
||||||
"Last-Translator: zk <zamani.karmana@gmail.com>\n"
|
|
||||||
"Language-Team: Indonesian (http://www.transifex.com/gnu-social/gnu-social/language/id/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: id\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr "Pengaya FirePHP menulis keluaran log StatusNet ke FirePHP."
|
|
@ -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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Ciencisto Dementa <maliktunga@users.noreply.github.com>, 2015
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-06-15 02:32+0000\n"
|
|
||||||
"Last-Translator: Ciencisto Dementa <maliktunga@users.noreply.github.com>\n"
|
|
||||||
"Language-Team: Ido (http://www.transifex.com/gnu-social/gnu-social/language/io/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: io\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr "L'extensilo FirePHP enskribas la produkturo dil logolibro di GNU social aden FirePHP."
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Icelandic (http://www.transifex.com/gnu-social/gnu-social/language/is/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: is\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:34+0000\n"
|
|
||||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
|
||||||
"Language-Team: Italian (http://www.transifex.com/gnu-social/gnu-social/language/it/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: it\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr "Il plugin FirePHP scrive l'output del registro di StatusNet FirePHP."
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:34+0000\n"
|
|
||||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
|
||||||
"Language-Team: Japanese (http://www.transifex.com/gnu-social/gnu-social/language/ja/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: ja\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr "FirePHPプラグインは、StatusNetの記録出力を、FirePHPへ書き出します。"
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Georgian (http://www.transifex.com/gnu-social/gnu-social/language/ka/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: ka\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Korean (http://www.transifex.com/gnu-social/gnu-social/language/ko/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: ko\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Colognian (http://www.transifex.com/gnu-social/gnu-social/language/ksh/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: ksh\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n==0) ? 0 : (n==1) ? 1 : 2;\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Luxembourgish (http://www.transifex.com/gnu-social/gnu-social/language/lb/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: lb\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Lithuanian (http://www.transifex.com/gnu-social/gnu-social/language/lt/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: lt\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-07 09:39+0000\n"
|
|
||||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
|
||||||
"Language-Team: Latvian (http://www.transifex.com/gnu-social/gnu-social/language/lv/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: lv\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Malagasy (http://www.transifex.com/gnu-social/gnu-social/language/mg/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: mg\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:34+0000\n"
|
|
||||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
|
||||||
"Language-Team: Macedonian (http://www.transifex.com/gnu-social/gnu-social/language/mk/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: mk\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr "Приклучокот FirePHP ги врши излезните записи во дневникот на StatusNet во FirePHP."
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Malayalam (http://www.transifex.com/gnu-social/gnu-social/language/ml/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: ml\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Malay (http://www.transifex.com/gnu-social/gnu-social/language/ms/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: ms\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Burmese (http://www.transifex.com/gnu-social/gnu-social/language/my/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: my\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:34+0000\n"
|
|
||||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
|
||||||
"Language-Team: Norwegian Bokmål (http://www.transifex.com/gnu-social/gnu-social/language/nb/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: nb\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr "Utvidelsen FirePHP skriver StatusNets logg-utdata til FirePHP."
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-07 09:30+0000\n"
|
|
||||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
|
||||||
"Language-Team: Nepali (http://www.transifex.com/gnu-social/gnu-social/language/ne/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: ne\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:34+0000\n"
|
|
||||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
|
||||||
"Language-Team: Dutch (http://www.transifex.com/gnu-social/gnu-social/language/nl/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: nl\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr "De plug-in FirePHP schrijft de logboekuitvoer van StatusNet naar FirePHP."
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Norwegian Nynorsk (http://www.transifex.com/gnu-social/gnu-social/language/nn/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: nn\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Polish (http://www.transifex.com/gnu-social/gnu-social/language/pl/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: pl\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:34+0000\n"
|
|
||||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
|
||||||
"Language-Team: Portuguese (http://www.transifex.com/gnu-social/gnu-social/language/pt/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: pt\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr "O plugin FirePHP envia a saída do log do StatusNet para o FirePHP."
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/gnu-social/gnu-social/language/pt_BR/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: pt_BR\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Romanian (Romania) (http://www.transifex.com/gnu-social/gnu-social/language/ro_RO/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: ro_RO\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:34+0000\n"
|
|
||||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
|
||||||
"Language-Team: Russian (http://www.transifex.com/gnu-social/gnu-social/language/ru/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: ru\n"
|
|
||||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr "Модуль FirePHP записывает вывод журнала StatusNet в FirePHP."
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Slovenian (http://www.transifex.com/gnu-social/gnu-social/language/sl/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: sl\n"
|
|
||||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Serbian (http://www.transifex.com/gnu-social/gnu-social/language/sr/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: sr\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
# Kristoffer Grundström <kristoffer.grundstrom1983@gmail.com>, 2015
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-05-03 10:23+0000\n"
|
|
||||||
"Last-Translator: Kristoffer Grundström <kristoffer.grundstrom1983@gmail.com>\n"
|
|
||||||
"Language-Team: Swedish (http://www.transifex.com/gnu-social/gnu-social/language/sv/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: sv\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr "Insticksprogrammet FirePHP skriver StatusNet's loggutmatning till FirePHP."
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-07 08:48+0000\n"
|
|
||||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
|
||||||
"Language-Team: Tamil (http://www.transifex.com/gnu-social/gnu-social/language/ta/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: ta\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Telugu (http://www.transifex.com/gnu-social/gnu-social/language/te/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: te\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:34+0000\n"
|
|
||||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
|
||||||
"Language-Team: Tagalog (http://www.transifex.com/gnu-social/gnu-social/language/tl/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: tl\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr "Ang pamasak na FirePHP ay nagsusulat ng tala ng paglalabas ng StatusNet sa FirePHP."
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Turkish (http://www.transifex.com/gnu-social/gnu-social/language/tr/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: tr\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:34+0000\n"
|
|
||||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
|
||||||
"Language-Team: Ukrainian (http://www.transifex.com/gnu-social/gnu-social/language/uk/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: uk\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr "Додаток FirePHP записує лоґи StatusNet до FirePHP."
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Urdu (Pakistan) (http://www.transifex.com/gnu-social/gnu-social/language/ur_PK/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: ur_PK\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Vietnamese (http://www.transifex.com/gnu-social/gnu-social/language/vi/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: vi\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Chinese (http://www.transifex.com/gnu-social/gnu-social/language/zh/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: zh\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:34+0000\n"
|
|
||||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
|
||||||
"Language-Team: Chinese (China) (http://www.transifex.com/gnu-social/gnu-social/language/zh_CN/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: zh_CN\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr "FirePHP 插件将 StatusNet 的日志输出到 FirePHP。"
|
|
@ -1,23 +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.
|
|
||||||
#
|
|
||||||
# Translators:
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: GNU social\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
|
||||||
"PO-Revision-Date: 2015-02-06 16:20+0000\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/gnu-social/gnu-social/language/zh_TW/)\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Language: zh_TW\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
|
|
||||||
#. TRANS: Plugin description.
|
|
||||||
#: FirePHPPlugin.php:69
|
|
||||||
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
|
||||||
msgstr ""
|
|
Loading…
Reference in New Issue
Block a user