Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 1.0.x
This commit is contained in:
commit
e3e90b4c27
80
extlib/Mail.php
Normal file → Executable file
80
extlib/Mail.php
Normal file → Executable file
@ -1,22 +1,47 @@
|
|||||||
<?php
|
<?php
|
||||||
//
|
/**
|
||||||
// +----------------------------------------------------------------------+
|
* PEAR's Mail:: interface.
|
||||||
// | PHP Version 4 |
|
*
|
||||||
// +----------------------------------------------------------------------+
|
* PHP versions 4 and 5
|
||||||
// | Copyright (c) 1997-2003 The PHP Group |
|
*
|
||||||
// +----------------------------------------------------------------------+
|
* LICENSE:
|
||||||
// | This source file is subject to version 2.02 of the PHP license, |
|
*
|
||||||
// | that is bundled with this package in the file LICENSE, and is |
|
* Copyright (c) 2002-2007, Richard Heyes
|
||||||
// | available at through the world-wide-web at |
|
* All rights reserved.
|
||||||
// | http://www.php.net/license/2_02.txt. |
|
*
|
||||||
// | If you did not receive a copy of the PHP license and are unable to |
|
* Redistribution and use in source and binary forms, with or without
|
||||||
// | obtain it through the world-wide-web, please send a note to |
|
* modification, are permitted provided that the following conditions
|
||||||
// | license@php.net so we can mail you a copy immediately. |
|
* are met:
|
||||||
// +----------------------------------------------------------------------+
|
*
|
||||||
// | Author: Chuck Hagenbuch <chuck@horde.org> |
|
* o Redistributions of source code must retain the above copyright
|
||||||
// +----------------------------------------------------------------------+
|
* notice, this list of conditions and the following disclaimer.
|
||||||
//
|
* o Redistributions in binary form must reproduce the above copyright
|
||||||
// $Id: Mail.php,v 1.17 2006/09/15 03:41:18 jon Exp $
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
* o The names of the authors may not 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.
|
||||||
|
*
|
||||||
|
* @category Mail
|
||||||
|
* @package Mail
|
||||||
|
* @author Chuck Hagenbuch <chuck@horde.org>
|
||||||
|
* @copyright 1997-2010 Chuck Hagenbuch
|
||||||
|
* @license http://opensource.org/licenses/bsd-license.php New BSD License
|
||||||
|
* @version CVS: $Id: Mail.php 294747 2010-02-08 08:18:33Z clockwerx $
|
||||||
|
* @link http://pear.php.net/package/Mail/
|
||||||
|
*/
|
||||||
|
|
||||||
require_once 'PEAR.php';
|
require_once 'PEAR.php';
|
||||||
|
|
||||||
@ -26,7 +51,7 @@ require_once 'PEAR.php';
|
|||||||
* useful in multiple mailer backends.
|
* useful in multiple mailer backends.
|
||||||
*
|
*
|
||||||
* @access public
|
* @access public
|
||||||
* @version $Revision: 1.17 $
|
* @version $Revision: 294747 $
|
||||||
* @package Mail
|
* @package Mail
|
||||||
*/
|
*/
|
||||||
class Mail
|
class Mail
|
||||||
@ -82,12 +107,20 @@ class Mail
|
|||||||
* @return mixed Returns true on success, or a PEAR_Error
|
* @return mixed Returns true on success, or a PEAR_Error
|
||||||
* containing a descriptive error message on
|
* containing a descriptive error message on
|
||||||
* failure.
|
* failure.
|
||||||
|
*
|
||||||
* @access public
|
* @access public
|
||||||
* @deprecated use Mail_mail::send instead
|
* @deprecated use Mail_mail::send instead
|
||||||
*/
|
*/
|
||||||
function send($recipients, $headers, $body)
|
function send($recipients, $headers, $body)
|
||||||
{
|
{
|
||||||
$this->_sanitizeHeaders($headers);
|
if (!is_array($headers)) {
|
||||||
|
return PEAR::raiseError('$headers must be an array');
|
||||||
|
}
|
||||||
|
|
||||||
|
$result = $this->_sanitizeHeaders($headers);
|
||||||
|
if (is_a($result, 'PEAR_Error')) {
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
|
||||||
// if we're passed an array of recipients, implode it.
|
// if we're passed an array of recipients, implode it.
|
||||||
if (is_array($recipients)) {
|
if (is_array($recipients)) {
|
||||||
@ -106,7 +139,6 @@ class Mail
|
|||||||
list(, $text_headers) = Mail::prepareHeaders($headers);
|
list(, $text_headers) = Mail::prepareHeaders($headers);
|
||||||
|
|
||||||
return mail($recipients, $subject, $body, $text_headers);
|
return mail($recipients, $subject, $body, $text_headers);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -151,9 +183,9 @@ class Mail
|
|||||||
foreach ($headers as $key => $value) {
|
foreach ($headers as $key => $value) {
|
||||||
if (strcasecmp($key, 'From') === 0) {
|
if (strcasecmp($key, 'From') === 0) {
|
||||||
include_once 'Mail/RFC822.php';
|
include_once 'Mail/RFC822.php';
|
||||||
$parser = &new Mail_RFC822();
|
$parser = new Mail_RFC822();
|
||||||
$addresses = $parser->parseAddressList($value, 'localhost', false);
|
$addresses = $parser->parseAddressList($value, 'localhost', false);
|
||||||
if (PEAR::isError($addresses)) {
|
if (is_a($addresses, 'PEAR_Error')) {
|
||||||
return $addresses;
|
return $addresses;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -221,7 +253,7 @@ class Mail
|
|||||||
$addresses = Mail_RFC822::parseAddressList($recipients, 'localhost', false);
|
$addresses = Mail_RFC822::parseAddressList($recipients, 'localhost', false);
|
||||||
|
|
||||||
// If parseAddressList() returned a PEAR_Error object, just return it.
|
// If parseAddressList() returned a PEAR_Error object, just return it.
|
||||||
if (PEAR::isError($addresses)) {
|
if (is_a($addresses, 'PEAR_Error')) {
|
||||||
return $addresses;
|
return $addresses;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
83
extlib/Mail/RFC822.php
Normal file → Executable file
83
extlib/Mail/RFC822.php
Normal file → Executable file
@ -1,37 +1,48 @@
|
|||||||
<?php
|
<?php
|
||||||
// +-----------------------------------------------------------------------+
|
/**
|
||||||
// | Copyright (c) 2001-2002, Richard Heyes |
|
* RFC 822 Email address list validation Utility
|
||||||
// | All rights reserved. |
|
*
|
||||||
// | |
|
* PHP versions 4 and 5
|
||||||
// | Redistribution and use in source and binary forms, with or without |
|
*
|
||||||
// | modification, are permitted provided that the following conditions |
|
* LICENSE:
|
||||||
// | are met: |
|
*
|
||||||
// | |
|
* Copyright (c) 2001-2010, Richard Heyes
|
||||||
// | o Redistributions of source code must retain the above copyright |
|
* All rights reserved.
|
||||||
// | notice, this list of conditions and the following disclaimer. |
|
*
|
||||||
// | o Redistributions in binary form must reproduce the above copyright |
|
* Redistribution and use in source and binary forms, with or without
|
||||||
// | notice, this list of conditions and the following disclaimer in the |
|
* modification, are permitted provided that the following conditions
|
||||||
// | documentation and/or other materials provided with the distribution.|
|
* are met:
|
||||||
// | o The names of the authors may not be used to endorse or promote |
|
*
|
||||||
// | products derived from this software without specific prior written |
|
* o Redistributions of source code must retain the above copyright
|
||||||
// | permission. |
|
* notice, this list of conditions and the following disclaimer.
|
||||||
// | |
|
* o Redistributions in binary form must reproduce the above copyright
|
||||||
// | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
// | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|
* documentation and/or other materials provided with the distribution.
|
||||||
// | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|
* o The names of the authors may not be used to endorse or promote
|
||||||
// | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
|
* products derived from this software without specific prior written
|
||||||
// | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
* permission.
|
||||||
// | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|
*
|
||||||
// | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
// | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
// | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
// | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||||
// | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
* 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,
|
||||||
// | Authors: Richard Heyes <richard@phpguru.org> |
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
// | Chuck Hagenbuch <chuck@horde.org> |
|
* 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.
|
||||||
|
*
|
||||||
|
* @category Mail
|
||||||
|
* @package Mail
|
||||||
|
* @author Richard Heyes <richard@phpguru.org>
|
||||||
|
* @author Chuck Hagenbuch <chuck@horde.org
|
||||||
|
* @copyright 2001-2010 Richard Heyes
|
||||||
|
* @license http://opensource.org/licenses/bsd-license.php New BSD License
|
||||||
|
* @version CVS: $Id: RFC822.php 294749 2010-02-08 08:22:25Z clockwerx $
|
||||||
|
* @link http://pear.php.net/package/Mail/
|
||||||
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* RFC 822 Email address list validation Utility
|
* RFC 822 Email address list validation Utility
|
||||||
@ -52,7 +63,7 @@
|
|||||||
*
|
*
|
||||||
* @author Richard Heyes <richard@phpguru.org>
|
* @author Richard Heyes <richard@phpguru.org>
|
||||||
* @author Chuck Hagenbuch <chuck@horde.org>
|
* @author Chuck Hagenbuch <chuck@horde.org>
|
||||||
* @version $Revision: 1.24 $
|
* @version $Revision: 294749 $
|
||||||
* @license BSD
|
* @license BSD
|
||||||
* @package Mail
|
* @package Mail
|
||||||
*/
|
*/
|
||||||
@ -635,8 +646,8 @@ class Mail_RFC822 {
|
|||||||
$comment = $this->_splitCheck($parts, ')');
|
$comment = $this->_splitCheck($parts, ')');
|
||||||
$comments[] = $comment;
|
$comments[] = $comment;
|
||||||
|
|
||||||
// +1 is for the trailing )
|
// +2 is for the brackets
|
||||||
$_mailbox = substr($_mailbox, strpos($_mailbox, $comment)+strlen($comment)+1);
|
$_mailbox = substr($_mailbox, strpos($_mailbox, '('.$comment)+strlen($comment)+2);
|
||||||
} else {
|
} else {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
63
extlib/Mail/mail.php
Normal file → Executable file
63
extlib/Mail/mail.php
Normal file → Executable file
@ -1,27 +1,52 @@
|
|||||||
<?php
|
<?php
|
||||||
//
|
/**
|
||||||
// +----------------------------------------------------------------------+
|
* internal PHP-mail() implementation of the PEAR Mail:: interface.
|
||||||
// | PHP Version 4 |
|
*
|
||||||
// +----------------------------------------------------------------------+
|
* PHP versions 4 and 5
|
||||||
// | Copyright (c) 1997-2003 The PHP Group |
|
*
|
||||||
// +----------------------------------------------------------------------+
|
* LICENSE:
|
||||||
// | This source file is subject to version 2.02 of the PHP license, |
|
*
|
||||||
// | that is bundled with this package in the file LICENSE, and is |
|
* Copyright (c) 2010 Chuck Hagenbuch
|
||||||
// | available at through the world-wide-web at |
|
* All rights reserved.
|
||||||
// | http://www.php.net/license/2_02.txt. |
|
*
|
||||||
// | If you did not receive a copy of the PHP license and are unable to |
|
* Redistribution and use in source and binary forms, with or without
|
||||||
// | obtain it through the world-wide-web, please send a note to |
|
* modification, are permitted provided that the following conditions
|
||||||
// | license@php.net so we can mail you a copy immediately. |
|
* are met:
|
||||||
// +----------------------------------------------------------------------+
|
*
|
||||||
// | Author: Chuck Hagenbuch <chuck@horde.org> |
|
* o Redistributions of source code must retain the above copyright
|
||||||
// +----------------------------------------------------------------------+
|
* notice, this list of conditions and the following disclaimer.
|
||||||
//
|
* o Redistributions in binary form must reproduce the above copyright
|
||||||
// $Id: mail.php,v 1.20 2007/10/06 17:00:00 chagenbu Exp $
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
* o The names of the authors may not 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.
|
||||||
|
*
|
||||||
|
* @category Mail
|
||||||
|
* @package Mail
|
||||||
|
* @author Chuck Hagenbuch <chuck@horde.org>
|
||||||
|
* @copyright 2010 Chuck Hagenbuch
|
||||||
|
* @license http://opensource.org/licenses/bsd-license.php New BSD License
|
||||||
|
* @version CVS: $Id: mail.php 294747 2010-02-08 08:18:33Z clockwerx $
|
||||||
|
* @link http://pear.php.net/package/Mail/
|
||||||
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* internal PHP-mail() implementation of the PEAR Mail:: interface.
|
* internal PHP-mail() implementation of the PEAR Mail:: interface.
|
||||||
* @package Mail
|
* @package Mail
|
||||||
* @version $Revision: 1.20 $
|
* @version $Revision: 294747 $
|
||||||
*/
|
*/
|
||||||
class Mail_mail extends Mail {
|
class Mail_mail extends Mail {
|
||||||
|
|
||||||
|
64
extlib/Mail/mock.php
Normal file → Executable file
64
extlib/Mail/mock.php
Normal file → Executable file
@ -1,29 +1,53 @@
|
|||||||
<?php
|
<?php
|
||||||
//
|
/**
|
||||||
// +----------------------------------------------------------------------+
|
* Mock implementation
|
||||||
// | PHP Version 4 |
|
*
|
||||||
// +----------------------------------------------------------------------+
|
* PHP versions 4 and 5
|
||||||
// | Copyright (c) 1997-2003 The PHP Group |
|
*
|
||||||
// +----------------------------------------------------------------------+
|
* LICENSE:
|
||||||
// | This source file is subject to version 2.02 of the PHP license, |
|
*
|
||||||
// | that is bundled with this package in the file LICENSE, and is |
|
* Copyright (c) 2010 Chuck Hagenbuch
|
||||||
// | available at through the world-wide-web at |
|
* All rights reserved.
|
||||||
// | http://www.php.net/license/2_02.txt. |
|
*
|
||||||
// | If you did not receive a copy of the PHP license and are unable to |
|
* Redistribution and use in source and binary forms, with or without
|
||||||
// | obtain it through the world-wide-web, please send a note to |
|
* modification, are permitted provided that the following conditions
|
||||||
// | license@php.net so we can mail you a copy immediately. |
|
* are met:
|
||||||
// +----------------------------------------------------------------------+
|
*
|
||||||
// | Author: Chuck Hagenbuch <chuck@horde.org> |
|
* o Redistributions of source code must retain the above copyright
|
||||||
// +----------------------------------------------------------------------+
|
* notice, this list of conditions and the following disclaimer.
|
||||||
//
|
* o Redistributions in binary form must reproduce the above copyright
|
||||||
// $Id: mock.php,v 1.1 2007/12/08 17:57:54 chagenbu Exp $
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
//
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
* o The names of the authors may not 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.
|
||||||
|
*
|
||||||
|
* @category Mail
|
||||||
|
* @package Mail
|
||||||
|
* @author Chuck Hagenbuch <chuck@horde.org>
|
||||||
|
* @copyright 2010 Chuck Hagenbuch
|
||||||
|
* @license http://opensource.org/licenses/bsd-license.php New BSD License
|
||||||
|
* @version CVS: $Id: mock.php 294747 2010-02-08 08:18:33Z clockwerx $
|
||||||
|
* @link http://pear.php.net/package/Mail/
|
||||||
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Mock implementation of the PEAR Mail:: interface for testing.
|
* Mock implementation of the PEAR Mail:: interface for testing.
|
||||||
* @access public
|
* @access public
|
||||||
* @package Mail
|
* @package Mail
|
||||||
* @version $Revision: 1.1 $
|
* @version $Revision: 294747 $
|
||||||
*/
|
*/
|
||||||
class Mail_mock extends Mail {
|
class Mail_mock extends Mail {
|
||||||
|
|
||||||
|
64
extlib/Mail/null.php
Normal file → Executable file
64
extlib/Mail/null.php
Normal file → Executable file
@ -1,29 +1,53 @@
|
|||||||
<?php
|
<?php
|
||||||
//
|
/**
|
||||||
// +----------------------------------------------------------------------+
|
* Null implementation of the PEAR Mail interface
|
||||||
// | PHP Version 4 |
|
*
|
||||||
// +----------------------------------------------------------------------+
|
* PHP versions 4 and 5
|
||||||
// | Copyright (c) 1997-2003 The PHP Group |
|
*
|
||||||
// +----------------------------------------------------------------------+
|
* LICENSE:
|
||||||
// | This source file is subject to version 2.02 of the PHP license, |
|
*
|
||||||
// | that is bundled with this package in the file LICENSE, and is |
|
* Copyright (c) 2010 Phil Kernick
|
||||||
// | available at through the world-wide-web at |
|
* All rights reserved.
|
||||||
// | http://www.php.net/license/2_02.txt. |
|
*
|
||||||
// | If you did not receive a copy of the PHP license and are unable to |
|
* Redistribution and use in source and binary forms, with or without
|
||||||
// | obtain it through the world-wide-web, please send a note to |
|
* modification, are permitted provided that the following conditions
|
||||||
// | license@php.net so we can mail you a copy immediately. |
|
* are met:
|
||||||
// +----------------------------------------------------------------------+
|
*
|
||||||
// | Author: Phil Kernick <philk@rotfl.com.au> |
|
* o Redistributions of source code must retain the above copyright
|
||||||
// +----------------------------------------------------------------------+
|
* notice, this list of conditions and the following disclaimer.
|
||||||
//
|
* o Redistributions in binary form must reproduce the above copyright
|
||||||
// $Id: null.php,v 1.2 2004/04/06 05:19:03 jon Exp $
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
//
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
* o The names of the authors may not 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.
|
||||||
|
*
|
||||||
|
* @category Mail
|
||||||
|
* @package Mail
|
||||||
|
* @author Phil Kernick <philk@rotfl.com.au>
|
||||||
|
* @copyright 2010 Phil Kernick
|
||||||
|
* @license http://opensource.org/licenses/bsd-license.php New BSD License
|
||||||
|
* @version CVS: $Id: null.php 294747 2010-02-08 08:18:33Z clockwerx $
|
||||||
|
* @link http://pear.php.net/package/Mail/
|
||||||
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Null implementation of the PEAR Mail:: interface.
|
* Null implementation of the PEAR Mail:: interface.
|
||||||
* @access public
|
* @access public
|
||||||
* @package Mail
|
* @package Mail
|
||||||
* @version $Revision: 1.2 $
|
* @version $Revision: 294747 $
|
||||||
*/
|
*/
|
||||||
class Mail_null extends Mail {
|
class Mail_null extends Mail {
|
||||||
|
|
||||||
|
7
extlib/Mail/sendmail.php
Normal file → Executable file
7
extlib/Mail/sendmail.php
Normal file → Executable file
@ -20,7 +20,7 @@
|
|||||||
* Sendmail implementation of the PEAR Mail:: interface.
|
* Sendmail implementation of the PEAR Mail:: interface.
|
||||||
* @access public
|
* @access public
|
||||||
* @package Mail
|
* @package Mail
|
||||||
* @version $Revision: 1.19 $
|
* @version $Revision: 294744 $
|
||||||
*/
|
*/
|
||||||
class Mail_sendmail extends Mail {
|
class Mail_sendmail extends Mail {
|
||||||
|
|
||||||
@ -117,7 +117,7 @@ class Mail_sendmail extends Mail {
|
|||||||
if (is_a($recipients, 'PEAR_Error')) {
|
if (is_a($recipients, 'PEAR_Error')) {
|
||||||
return $recipients;
|
return $recipients;
|
||||||
}
|
}
|
||||||
$recipients = escapeShellCmd(implode(' ', $recipients));
|
$recipients = implode(' ', array_map('escapeshellarg', $recipients));
|
||||||
|
|
||||||
$headerElements = $this->prepareHeaders($headers);
|
$headerElements = $this->prepareHeaders($headers);
|
||||||
if (is_a($headerElements, 'PEAR_Error')) {
|
if (is_a($headerElements, 'PEAR_Error')) {
|
||||||
@ -141,7 +141,8 @@ class Mail_sendmail extends Mail {
|
|||||||
return PEAR::raiseError('From address specified with dangerous characters.');
|
return PEAR::raiseError('From address specified with dangerous characters.');
|
||||||
}
|
}
|
||||||
|
|
||||||
$from = escapeShellCmd($from);
|
$from = escapeshellarg($from); // Security bug #16200
|
||||||
|
|
||||||
$mail = @popen($this->sendmail_path . (!empty($this->sendmail_args) ? ' ' . $this->sendmail_args : '') . " -f$from -- $recipients", 'w');
|
$mail = @popen($this->sendmail_path . (!empty($this->sendmail_args) ? ' ' . $this->sendmail_args : '') . " -f$from -- $recipients", 'w');
|
||||||
if (!$mail) {
|
if (!$mail) {
|
||||||
return PEAR::raiseError('Failed to open sendmail [' . $this->sendmail_path . '] for execution.');
|
return PEAR::raiseError('Failed to open sendmail [' . $this->sendmail_path . '] for execution.');
|
||||||
|
73
extlib/Mail/smtp.php
Normal file → Executable file
73
extlib/Mail/smtp.php
Normal file → Executable file
@ -1,21 +1,48 @@
|
|||||||
<?php
|
<?php
|
||||||
//
|
/**
|
||||||
// +----------------------------------------------------------------------+
|
* SMTP implementation of the PEAR Mail interface. Requires the Net_SMTP class.
|
||||||
// | PHP Version 4 |
|
*
|
||||||
// +----------------------------------------------------------------------+
|
* PHP versions 4 and 5
|
||||||
// | Copyright (c) 1997-2003 The PHP Group |
|
*
|
||||||
// +----------------------------------------------------------------------+
|
* LICENSE:
|
||||||
// | This source file is subject to version 2.02 of the PHP license, |
|
*
|
||||||
// | that is bundled with this package in the file LICENSE, and is |
|
* Copyright (c) 2010, Chuck Hagenbuch
|
||||||
// | available at through the world-wide-web at |
|
* All rights reserved.
|
||||||
// | http://www.php.net/license/2_02.txt. |
|
*
|
||||||
// | If you did not receive a copy of the PHP license and are unable to |
|
* Redistribution and use in source and binary forms, with or without
|
||||||
// | obtain it through the world-wide-web, please send a note to |
|
* modification, are permitted provided that the following conditions
|
||||||
// | license@php.net so we can mail you a copy immediately. |
|
* are met:
|
||||||
// +----------------------------------------------------------------------+
|
*
|
||||||
// | Authors: Chuck Hagenbuch <chuck@horde.org> |
|
* o Redistributions of source code must retain the above copyright
|
||||||
// | Jon Parise <jon@php.net> |
|
* notice, this list of conditions and the following disclaimer.
|
||||||
// +----------------------------------------------------------------------+
|
* o 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.
|
||||||
|
* o The names of the authors may not 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.
|
||||||
|
*
|
||||||
|
* @category HTTP
|
||||||
|
* @package HTTP_Request
|
||||||
|
* @author Jon Parise <jon@php.net>
|
||||||
|
* @author Chuck Hagenbuch <chuck@horde.org>
|
||||||
|
* @copyright 2010 Chuck Hagenbuch
|
||||||
|
* @license http://opensource.org/licenses/bsd-license.php New BSD License
|
||||||
|
* @version CVS: $Id: smtp.php 294747 2010-02-08 08:18:33Z clockwerx $
|
||||||
|
* @link http://pear.php.net/package/Mail/
|
||||||
|
*/
|
||||||
|
|
||||||
/** Error: Failed to create a Net_SMTP object */
|
/** Error: Failed to create a Net_SMTP object */
|
||||||
define('PEAR_MAIL_SMTP_ERROR_CREATE', 10000);
|
define('PEAR_MAIL_SMTP_ERROR_CREATE', 10000);
|
||||||
@ -42,7 +69,7 @@ define('PEAR_MAIL_SMTP_ERROR_DATA', 10006);
|
|||||||
* SMTP implementation of the PEAR Mail interface. Requires the Net_SMTP class.
|
* SMTP implementation of the PEAR Mail interface. Requires the Net_SMTP class.
|
||||||
* @access public
|
* @access public
|
||||||
* @package Mail
|
* @package Mail
|
||||||
* @version $Revision: 1.33 $
|
* @version $Revision: 294747 $
|
||||||
*/
|
*/
|
||||||
class Mail_smtp extends Mail {
|
class Mail_smtp extends Mail {
|
||||||
|
|
||||||
@ -278,6 +305,16 @@ class Mail_smtp extends Mail {
|
|||||||
|
|
||||||
/* Send the message's headers and the body as SMTP data. */
|
/* Send the message's headers and the body as SMTP data. */
|
||||||
$res = $this->_smtp->data($textHeaders . "\r\n\r\n" . $body);
|
$res = $this->_smtp->data($textHeaders . "\r\n\r\n" . $body);
|
||||||
|
list(,$args) = $this->_smtp->getResponse();
|
||||||
|
|
||||||
|
if (preg_match("/Ok: queued as (.*)/", $args, $queued)) {
|
||||||
|
$this->queued_as = $queued[1];
|
||||||
|
}
|
||||||
|
|
||||||
|
/* we need the greeting; from it we can extract the authorative name of the mail server we've really connected to.
|
||||||
|
* ideal if we're connecting to a round-robin of relay servers and need to track which exact one took the email */
|
||||||
|
$this->greeting = $this->_smtp->getGreeting();
|
||||||
|
|
||||||
if (is_a($res, 'PEAR_Error')) {
|
if (is_a($res, 'PEAR_Error')) {
|
||||||
$error = $this->_error('Failed to send data', $res);
|
$error = $this->_error('Failed to send data', $res);
|
||||||
$this->_smtp->rset();
|
$this->_smtp->rset();
|
||||||
|
44
extlib/Mail/smtpmx.php
Normal file → Executable file
44
extlib/Mail/smtpmx.php
Normal file → Executable file
@ -8,19 +8,43 @@
|
|||||||
*
|
*
|
||||||
* PHP versions 4 and 5
|
* PHP versions 4 and 5
|
||||||
*
|
*
|
||||||
* LICENSE: This source file is subject to version 3.0 of the PHP license
|
* LICENSE:
|
||||||
* that is available through the world-wide-web at the following URI:
|
*
|
||||||
* http://www.php.net/license/3_0.txt. If you did not receive a copy of
|
* Copyright (c) 2010, gERD Schaufelberger
|
||||||
* the PHP License and are unable to obtain it through the web, please
|
* All rights reserved.
|
||||||
* send a note to license@php.net so we can mail you a copy immediately.
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions
|
||||||
|
* are met:
|
||||||
|
*
|
||||||
|
* o Redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer.
|
||||||
|
* o 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.
|
||||||
|
* o The names of the authors may not 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.
|
||||||
*
|
*
|
||||||
* @category Mail
|
* @category Mail
|
||||||
* @package Mail_smtpmx
|
* @package Mail_smtpmx
|
||||||
* @author gERD Schaufelberger <gerd@php-tools.net>
|
* @author gERD Schaufelberger <gerd@php-tools.net>
|
||||||
* @copyright 1997-2005 The PHP Group
|
* @copyright 2010 gERD Schaufelberger
|
||||||
* @license http://www.php.net/license/3_0.txt PHP License 3.0
|
* @license http://opensource.org/licenses/bsd-license.php New BSD License
|
||||||
* @version CVS: $Id: smtpmx.php,v 1.2 2007/10/06 17:00:00 chagenbu Exp $
|
* @version CVS: $Id: smtpmx.php 294747 2010-02-08 08:18:33Z clockwerx $
|
||||||
* @see Mail
|
* @link http://pear.php.net/package/Mail/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require_once 'Net/SMTP.php';
|
require_once 'Net/SMTP.php';
|
||||||
@ -32,7 +56,7 @@ require_once 'Net/SMTP.php';
|
|||||||
* @access public
|
* @access public
|
||||||
* @author gERD Schaufelberger <gerd@php-tools.net>
|
* @author gERD Schaufelberger <gerd@php-tools.net>
|
||||||
* @package Mail
|
* @package Mail
|
||||||
* @version $Revision: 1.2 $
|
* @version $Revision: 294747 $
|
||||||
*/
|
*/
|
||||||
class Mail_smtpmx extends Mail {
|
class Mail_smtpmx extends Mail {
|
||||||
|
|
||||||
|
@ -171,7 +171,7 @@ class XMPPHP_XMPP extends XMPPHP_XMLStream {
|
|||||||
$body = htmlspecialchars($body);
|
$body = htmlspecialchars($body);
|
||||||
$subject = htmlspecialchars($subject);
|
$subject = htmlspecialchars($subject);
|
||||||
|
|
||||||
$out = "<message from='{$this->fulljid}' to='$to' type='$type'>";
|
$out = "<message from=\"{$this->fulljid}\" to=\"$to\" type='$type'>";
|
||||||
if($subject) $out .= "<subject>$subject</subject>";
|
if($subject) $out .= "<subject>$subject</subject>";
|
||||||
$out .= "<body>$body</body>";
|
$out .= "<body>$body</body>";
|
||||||
if($payload) $out .= $payload;
|
if($payload) $out .= $payload;
|
||||||
@ -194,7 +194,7 @@ class XMPPHP_XMPP extends XMPPHP_XMLStream {
|
|||||||
if($show == 'unavailable') $type = 'unavailable';
|
if($show == 'unavailable') $type = 'unavailable';
|
||||||
|
|
||||||
$out = "<presence";
|
$out = "<presence";
|
||||||
if($to) $out .= " to='$to'";
|
if($to) $out .= " to=\"$to\"";
|
||||||
if($type) $out .= " type='$type'";
|
if($type) $out .= " type='$type'";
|
||||||
if($show == 'available' and !$status) {
|
if($show == 'available' and !$status) {
|
||||||
$out .= "/>";
|
$out .= "/>";
|
||||||
|
@ -9,12 +9,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-04-24 14:16+0000\n"
|
"POT-Creation-Date: 2010-04-29 23:21+0000\n"
|
||||||
"PO-Revision-Date: 2010-04-26 22:16:02+0000\n"
|
"PO-Revision-Date: 2010-04-29 23:22:00+0000\n"
|
||||||
"Language-Team: Arabic\n"
|
"Language-Team: Arabic\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.17alpha (r65552); Translate extension (2010-04-25)\n"
|
"X-Generator: MediaWiki 1.17alpha (r65675); Translate extension (2010-04-25)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: ar\n"
|
"X-Language-Code: ar\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -1227,7 +1227,7 @@ msgstr "الوصف مطلوب."
|
|||||||
|
|
||||||
#: actions/editapplication.php:194
|
#: actions/editapplication.php:194
|
||||||
msgid "Source URL is too long."
|
msgid "Source URL is too long."
|
||||||
msgstr ""
|
msgstr "المسار المصدر طويل جدًا."
|
||||||
|
|
||||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||||
msgid "Source URL is not valid."
|
msgid "Source URL is not valid."
|
||||||
@ -2008,15 +2008,13 @@ msgstr "هذا عنوان محادثة فورية خاطئ."
|
|||||||
|
|
||||||
#. TRANS: Server error thrown on database error canceling IM address confirmation.
|
#. TRANS: Server error thrown on database error canceling IM address confirmation.
|
||||||
#: actions/imsettings.php:397
|
#: actions/imsettings.php:397
|
||||||
#, fuzzy
|
|
||||||
msgid "Couldn't delete IM confirmation."
|
msgid "Couldn't delete IM confirmation."
|
||||||
msgstr "تعذّر حذف تأكيد البريد الإلكتروني."
|
msgstr "تعذّر حذف تأكيد البريد المراسلة الفورية."
|
||||||
|
|
||||||
#. TRANS: Message given after successfully canceling IM address confirmation.
|
#. TRANS: Message given after successfully canceling IM address confirmation.
|
||||||
#: actions/imsettings.php:402
|
#: actions/imsettings.php:402
|
||||||
#, fuzzy
|
|
||||||
msgid "IM confirmation cancelled."
|
msgid "IM confirmation cancelled."
|
||||||
msgstr "أُلغي التأكيد."
|
msgstr "أُلغي تأكيد المراسلة الفورية."
|
||||||
|
|
||||||
#. TRANS: Message given trying to remove an IM address that is not
|
#. TRANS: Message given trying to remove an IM address that is not
|
||||||
#. TRANS: registered for the active user.
|
#. TRANS: registered for the active user.
|
||||||
@ -2026,9 +2024,8 @@ msgstr "هذه ليست هويتك في جابر."
|
|||||||
|
|
||||||
#. TRANS: Message given after successfully removing a registered IM address.
|
#. TRANS: Message given after successfully removing a registered IM address.
|
||||||
#: actions/imsettings.php:447
|
#: actions/imsettings.php:447
|
||||||
#, fuzzy
|
|
||||||
msgid "The IM address was removed."
|
msgid "The IM address was removed."
|
||||||
msgstr "أزيل هذا العنوان."
|
msgstr "أزيل عنوان المراسلة الفورية هذا."
|
||||||
|
|
||||||
#: actions/inbox.php:59
|
#: actions/inbox.php:59
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -2046,7 +2043,7 @@ msgstr "هذا صندوق بريدك الوارد، والذي يسرد رسائ
|
|||||||
|
|
||||||
#: actions/invite.php:39
|
#: actions/invite.php:39
|
||||||
msgid "Invites have been disabled."
|
msgid "Invites have been disabled."
|
||||||
msgstr ""
|
msgstr "تم تعطيل الدعوات."
|
||||||
|
|
||||||
#: actions/invite.php:41
|
#: actions/invite.php:41
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
@ -2258,9 +2255,8 @@ msgid "Can't make %1$s an admin for group %2$s."
|
|||||||
msgstr "لم يمكن جعل %1$s إداريا للمجموعة %2$s."
|
msgstr "لم يمكن جعل %1$s إداريا للمجموعة %2$s."
|
||||||
|
|
||||||
#: actions/microsummary.php:69
|
#: actions/microsummary.php:69
|
||||||
#, fuzzy
|
|
||||||
msgid "No current status."
|
msgid "No current status."
|
||||||
msgstr "لا حالة حالية"
|
msgstr "لا حالة جارية."
|
||||||
|
|
||||||
#: actions/newapplication.php:52
|
#: actions/newapplication.php:52
|
||||||
msgid "New Application"
|
msgid "New Application"
|
||||||
@ -2603,24 +2599,24 @@ msgid "Path and server settings for this StatusNet site."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/pathsadminpanel.php:157
|
#: actions/pathsadminpanel.php:157
|
||||||
#, fuzzy, php-format
|
#, php-format
|
||||||
msgid "Theme directory not readable: %s."
|
msgid "Theme directory not readable: %s."
|
||||||
msgstr "لا يمكن قراءة دليل السمات: %s"
|
msgstr "لا يمكن قراءة دليل السمات: %s."
|
||||||
|
|
||||||
#: actions/pathsadminpanel.php:163
|
#: actions/pathsadminpanel.php:163
|
||||||
#, fuzzy, php-format
|
#, php-format
|
||||||
msgid "Avatar directory not writable: %s."
|
msgid "Avatar directory not writable: %s."
|
||||||
msgstr "لا يمكن الكتابة في دليل الأفتارات: %s"
|
msgstr "لا يمكن الكتابة في دليل الأفتارات: %s."
|
||||||
|
|
||||||
#: actions/pathsadminpanel.php:169
|
#: actions/pathsadminpanel.php:169
|
||||||
#, fuzzy, php-format
|
#, php-format
|
||||||
msgid "Background directory not writable: %s."
|
msgid "Background directory not writable: %s."
|
||||||
msgstr "لا يمكن الكتابة في دليل الخلفيات: %s"
|
msgstr "لا يمكن الكتابة في دليل الخلفيات: %s."
|
||||||
|
|
||||||
#: actions/pathsadminpanel.php:177
|
#: actions/pathsadminpanel.php:177
|
||||||
#, fuzzy, php-format
|
#, php-format
|
||||||
msgid "Locales directory not readable: %s."
|
msgid "Locales directory not readable: %s."
|
||||||
msgstr "لا يمكن قراءة دليل المحليات: %s"
|
msgstr "لا يمكن قراءة دليل المحليات: %s."
|
||||||
|
|
||||||
#: actions/pathsadminpanel.php:183
|
#: actions/pathsadminpanel.php:183
|
||||||
msgid "Invalid SSL server. The maximum length is 255 characters."
|
msgid "Invalid SSL server. The maximum length is 255 characters."
|
||||||
@ -2760,9 +2756,9 @@ msgid "People search"
|
|||||||
msgstr "بحث في الأشخاص"
|
msgstr "بحث في الأشخاص"
|
||||||
|
|
||||||
#: actions/peopletag.php:68
|
#: actions/peopletag.php:68
|
||||||
#, fuzzy, php-format
|
#, php-format
|
||||||
msgid "Not a valid people tag: %s."
|
msgid "Not a valid people tag: %s."
|
||||||
msgstr "ليس وسم أشخاص صالح: %s"
|
msgstr "ليس وسم أشخاص صالح: %s."
|
||||||
|
|
||||||
#: actions/peopletag.php:142
|
#: actions/peopletag.php:142
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -2770,9 +2766,8 @@ msgid "Users self-tagged with %1$s - page %2$d"
|
|||||||
msgstr "المستخدمون الذين وسموا أنفسهم ب%1$s - الصفحة %2$d"
|
msgstr "المستخدمون الذين وسموا أنفسهم ب%1$s - الصفحة %2$d"
|
||||||
|
|
||||||
#: actions/postnotice.php:95
|
#: actions/postnotice.php:95
|
||||||
#, fuzzy
|
|
||||||
msgid "Invalid notice content."
|
msgid "Invalid notice content."
|
||||||
msgstr "محتوى إشعار غير صالح"
|
msgstr "محتوى إشعار غير صالح."
|
||||||
|
|
||||||
#: actions/postnotice.php:101
|
#: actions/postnotice.php:101
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -2913,9 +2908,9 @@ msgid "Settings saved."
|
|||||||
msgstr "حُفظت الإعدادات."
|
msgstr "حُفظت الإعدادات."
|
||||||
|
|
||||||
#: actions/public.php:83
|
#: actions/public.php:83
|
||||||
#, fuzzy, php-format
|
#, php-format
|
||||||
msgid "Beyond the page limit (%s)."
|
msgid "Beyond the page limit (%s)."
|
||||||
msgstr "وراء حد الصفحة (%s)"
|
msgstr "بعد حد الصفحة (%s)."
|
||||||
|
|
||||||
#: actions/public.php:92
|
#: actions/public.php:92
|
||||||
msgid "Could not retrieve public stream."
|
msgid "Could not retrieve public stream."
|
||||||
@ -3385,9 +3380,8 @@ msgid "Sessions"
|
|||||||
msgstr "الجلسات"
|
msgstr "الجلسات"
|
||||||
|
|
||||||
#: actions/sessionsadminpanel.php:65
|
#: actions/sessionsadminpanel.php:65
|
||||||
#, fuzzy
|
|
||||||
msgid "Session settings for this StatusNet site."
|
msgid "Session settings for this StatusNet site."
|
||||||
msgstr "الإعدادات الأساسية لموقع StatusNet هذا."
|
msgstr "إعدادات جلسة موقع StatusNet هذا."
|
||||||
|
|
||||||
#: actions/sessionsadminpanel.php:175
|
#: actions/sessionsadminpanel.php:175
|
||||||
msgid "Handle sessions"
|
msgid "Handle sessions"
|
||||||
@ -4641,7 +4635,7 @@ msgstr "مشكلة أثناء حفظ الإشعار."
|
|||||||
|
|
||||||
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
||||||
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
||||||
#: classes/Notice.php:1535
|
#: classes/Notice.php:1533
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "RT @%1$s %2$s"
|
msgid "RT @%1$s %2$s"
|
||||||
msgstr "آر تي @%1$s %2$s"
|
msgstr "آر تي @%1$s %2$s"
|
||||||
@ -5002,7 +4996,7 @@ msgid "Before"
|
|||||||
msgstr "قبل"
|
msgstr "قبل"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a feed instance is a DOMDocument.
|
#. TRANS: Client exception thrown when a feed instance is a DOMDocument.
|
||||||
#: lib/activity.php:121
|
#: lib/activity.php:122
|
||||||
msgid "Expecting a root feed element but got a whole XML document."
|
msgid "Expecting a root feed element but got a whole XML document."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5010,11 +5004,11 @@ msgstr ""
|
|||||||
msgid "Can't handle remote content yet."
|
msgid "Can't handle remote content yet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/activityutils.php:236
|
#: lib/activityutils.php:244
|
||||||
msgid "Can't handle embedded XML content yet."
|
msgid "Can't handle embedded XML content yet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/activityutils.php:240
|
#: lib/activityutils.php:248
|
||||||
msgid "Can't handle embedded Base64 content yet."
|
msgid "Can't handle embedded Base64 content yet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -6318,7 +6312,7 @@ msgstr "رسائلك المُرسلة"
|
|||||||
msgid "Tags in %s's notices"
|
msgid "Tags in %s's notices"
|
||||||
msgstr "وسوم في إشعارات %s"
|
msgstr "وسوم في إشعارات %s"
|
||||||
|
|
||||||
#: lib/plugin.php:114
|
#: lib/plugin.php:115
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr "غير معروفة"
|
msgstr "غير معروفة"
|
||||||
|
|
||||||
|
@ -15,12 +15,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-04-24 14:16+0000\n"
|
"POT-Creation-Date: 2010-04-29 23:21+0000\n"
|
||||||
"PO-Revision-Date: 2010-04-26 22:16:22+0000\n"
|
"PO-Revision-Date: 2010-04-29 23:22:18+0000\n"
|
||||||
"Language-Team: German\n"
|
"Language-Team: German\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.17alpha (r65552); Translate extension (2010-04-25)\n"
|
"X-Generator: MediaWiki 1.17alpha (r65675); Translate extension (2010-04-25)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: de\n"
|
"X-Language-Code: de\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -3316,13 +3316,12 @@ msgid "Invalid username or password."
|
|||||||
msgstr "Benutzername oder Passwort falsch."
|
msgstr "Benutzername oder Passwort falsch."
|
||||||
|
|
||||||
#: actions/register.php:343
|
#: actions/register.php:343
|
||||||
#, fuzzy
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"With this form you can create a new account. You can then post notices and "
|
"With this form you can create a new account. You can then post notices and "
|
||||||
"link up to friends and colleagues. "
|
"link up to friends and colleagues. "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Hier kannst du einen neuen Zugang einrichten. Danach kannst du Nachrichten "
|
"Hier kannst du einen neuen Zugang einrichten. Anschließend kannst du "
|
||||||
"und Links an deine Freunde und Kollegen schicken. "
|
"Nachrichten und Links mit deinen Freunden und Kollegen teilen. "
|
||||||
|
|
||||||
#: actions/register.php:425
|
#: actions/register.php:425
|
||||||
msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
|
msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
|
||||||
@ -3355,13 +3354,13 @@ msgid "Longer name, preferably your \"real\" name"
|
|||||||
msgstr "Längerer Name, bevorzugt dein „echter“ Name"
|
msgstr "Längerer Name, bevorzugt dein „echter“ Name"
|
||||||
|
|
||||||
#: actions/register.php:494
|
#: actions/register.php:494
|
||||||
#, fuzzy, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"My text and files are available under %s except this private data: password, "
|
"My text and files are available under %s except this private data: password, "
|
||||||
"email address, IM address, and phone number."
|
"email address, IM address, and phone number."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"außer folgende private Daten: Passwort, E-Mail-Adresse, IM-Adresse und "
|
"Abgesehen von folgenden Daten: Passwort, Email Adresse, IM Adresse und "
|
||||||
"Telefonnummer."
|
"Telefonnummer, sind all meine Texte und Dateien unter %s verfügbar."
|
||||||
|
|
||||||
#: actions/register.php:542
|
#: actions/register.php:542
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -4898,7 +4897,7 @@ msgstr "Problem bei Speichern der Nachricht."
|
|||||||
|
|
||||||
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
||||||
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
||||||
#: classes/Notice.php:1535
|
#: classes/Notice.php:1533
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "RT @%1$s %2$s"
|
msgid "RT @%1$s %2$s"
|
||||||
msgstr "RT @%1$s %2$s"
|
msgstr "RT @%1$s %2$s"
|
||||||
@ -5260,7 +5259,7 @@ msgid "Before"
|
|||||||
msgstr "Vorher"
|
msgstr "Vorher"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a feed instance is a DOMDocument.
|
#. TRANS: Client exception thrown when a feed instance is a DOMDocument.
|
||||||
#: lib/activity.php:121
|
#: lib/activity.php:122
|
||||||
msgid "Expecting a root feed element but got a whole XML document."
|
msgid "Expecting a root feed element but got a whole XML document."
|
||||||
msgstr "root-Element eines Feeds erwartet aber ganzes XML Dokument erhalten."
|
msgstr "root-Element eines Feeds erwartet aber ganzes XML Dokument erhalten."
|
||||||
|
|
||||||
@ -5268,11 +5267,11 @@ msgstr "root-Element eines Feeds erwartet aber ganzes XML Dokument erhalten."
|
|||||||
msgid "Can't handle remote content yet."
|
msgid "Can't handle remote content yet."
|
||||||
msgstr "Fremdinhalt kann noch nicht eingebunden werden."
|
msgstr "Fremdinhalt kann noch nicht eingebunden werden."
|
||||||
|
|
||||||
#: lib/activityutils.php:236
|
#: lib/activityutils.php:244
|
||||||
msgid "Can't handle embedded XML content yet."
|
msgid "Can't handle embedded XML content yet."
|
||||||
msgstr "Kann eingebundenen XML Inhalt nicht verarbeiten."
|
msgstr "Kann eingebundenen XML Inhalt nicht verarbeiten."
|
||||||
|
|
||||||
#: lib/activityutils.php:240
|
#: lib/activityutils.php:248
|
||||||
msgid "Can't handle embedded Base64 content yet."
|
msgid "Can't handle embedded Base64 content yet."
|
||||||
msgstr "Eingebundener Base64 Inhalt kann noch nicht verarbeitet werden."
|
msgstr "Eingebundener Base64 Inhalt kann noch nicht verarbeitet werden."
|
||||||
|
|
||||||
@ -6657,7 +6656,7 @@ msgstr "Deine gesendeten Nachrichten"
|
|||||||
msgid "Tags in %s's notices"
|
msgid "Tags in %s's notices"
|
||||||
msgstr "Stichworte in %ss Nachrichten"
|
msgstr "Stichworte in %ss Nachrichten"
|
||||||
|
|
||||||
#: lib/plugin.php:114
|
#: lib/plugin.php:115
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr "Unbekannter Befehl"
|
msgstr "Unbekannter Befehl"
|
||||||
|
|
||||||
|
@ -9,12 +9,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-04-24 14:16+0000\n"
|
"POT-Creation-Date: 2010-04-29 23:21+0000\n"
|
||||||
"PO-Revision-Date: 2010-04-26 22:17:07+0000\n"
|
"PO-Revision-Date: 2010-04-29 23:22:44+0000\n"
|
||||||
"Language-Team: Galician\n"
|
"Language-Team: Galician\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.17alpha (r65552); Translate extension (2010-04-25)\n"
|
"X-Generator: MediaWiki 1.17alpha (r65675); Translate extension (2010-04-25)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: gl\n"
|
"X-Language-Code: gl\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -4880,7 +4880,7 @@ msgstr "Houbo un problema ao gardar a caixa de entrada do grupo."
|
|||||||
|
|
||||||
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
||||||
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
||||||
#: classes/Notice.php:1535
|
#: classes/Notice.php:1533
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "RT @%1$s %2$s"
|
msgid "RT @%1$s %2$s"
|
||||||
msgstr "♻ @%1$s %2$s"
|
msgstr "♻ @%1$s %2$s"
|
||||||
@ -5242,7 +5242,7 @@ msgid "Before"
|
|||||||
msgstr "Anteriores"
|
msgstr "Anteriores"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a feed instance is a DOMDocument.
|
#. TRANS: Client exception thrown when a feed instance is a DOMDocument.
|
||||||
#: lib/activity.php:121
|
#: lib/activity.php:122
|
||||||
msgid "Expecting a root feed element but got a whole XML document."
|
msgid "Expecting a root feed element but got a whole XML document."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Esperábase unha fonte de novas raíz pero recibiuse un documento XML completo."
|
"Esperábase unha fonte de novas raíz pero recibiuse un documento XML completo."
|
||||||
@ -5251,11 +5251,11 @@ msgstr ""
|
|||||||
msgid "Can't handle remote content yet."
|
msgid "Can't handle remote content yet."
|
||||||
msgstr "Aínda non é posible manexar contidos remotos."
|
msgstr "Aínda non é posible manexar contidos remotos."
|
||||||
|
|
||||||
#: lib/activityutils.php:236
|
#: lib/activityutils.php:244
|
||||||
msgid "Can't handle embedded XML content yet."
|
msgid "Can't handle embedded XML content yet."
|
||||||
msgstr "Aínda non se poden manexar contidos XML integrados."
|
msgstr "Aínda non se poden manexar contidos XML integrados."
|
||||||
|
|
||||||
#: lib/activityutils.php:240
|
#: lib/activityutils.php:248
|
||||||
msgid "Can't handle embedded Base64 content yet."
|
msgid "Can't handle embedded Base64 content yet."
|
||||||
msgstr "Aínda non se poden manexar contidos Base64."
|
msgstr "Aínda non se poden manexar contidos Base64."
|
||||||
|
|
||||||
@ -5793,8 +5793,8 @@ msgstr ""
|
|||||||
"get <alcume> - obter a última nota do usuario\n"
|
"get <alcume> - obter a última nota do usuario\n"
|
||||||
"whois <alcume> - obtén a información do perfil do usuario\n"
|
"whois <alcume> - obtén a información do perfil do usuario\n"
|
||||||
"lose <alcume> - facer que o usuario deixe de seguilo\n"
|
"lose <alcume> - facer que o usuario deixe de seguilo\n"
|
||||||
"fav <alcume> - marcar como “favorita” a última nota do usuario\n"
|
"fav <alcume> - marcar como \"favorita\" a última nota do usuario\n"
|
||||||
"fav #<id da nota> - marcar como “favorita” a nota coa id indicada\n"
|
"fav #<id da nota> - marcar como \"favorita\" a nota coa id indicada\n"
|
||||||
"repeat #<id da nota> - repetir a nota doa id indicada\n"
|
"repeat #<id da nota> - repetir a nota doa id indicada\n"
|
||||||
"repeat <alcume> - repetir a última nota do usuario\n"
|
"repeat <alcume> - repetir a última nota do usuario\n"
|
||||||
"reply #<id da nota> - responder a unha nota coa id indicada\n"
|
"reply #<id da nota> - responder a unha nota coa id indicada\n"
|
||||||
@ -5803,11 +5803,11 @@ msgstr ""
|
|||||||
"login - obter un enderezo para identificarse na interface web\n"
|
"login - obter un enderezo para identificarse na interface web\n"
|
||||||
"drop <grupo> - deixar o grupo indicado\n"
|
"drop <grupo> - deixar o grupo indicado\n"
|
||||||
"stats - obter as súas estatísticas\n"
|
"stats - obter as súas estatísticas\n"
|
||||||
"stop - idéntico a “off”\n"
|
"stop - idéntico a \"off\"\n"
|
||||||
"quit - idéntico a “off”\n"
|
"quit - idéntico a \"off\"\n"
|
||||||
"sub <alcume> - idéntico a “follow”\n"
|
"sub <alcume> - idéntico a \"follow\"\n"
|
||||||
"unsub <alcume> - idéntico a “leave”\n"
|
"unsub <alcume> - idéntico a \"leave\"\n"
|
||||||
"last <alcume> - idéntico a “get”\n"
|
"last <alcume> - idéntico a \"get\"\n"
|
||||||
"on <alcume> - aínda non se integrou\n"
|
"on <alcume> - aínda non se integrou\n"
|
||||||
"off <alcume> - aínda non se integrou\n"
|
"off <alcume> - aínda non se integrou\n"
|
||||||
"nudge <alcume> - facerlle un aceno ao usuario indicado\n"
|
"nudge <alcume> - facerlle un aceno ao usuario indicado\n"
|
||||||
@ -5841,7 +5841,7 @@ msgstr "MI"
|
|||||||
|
|
||||||
#: lib/connectsettingsaction.php:111
|
#: lib/connectsettingsaction.php:111
|
||||||
msgid "Updates by instant messenger (IM)"
|
msgid "Updates by instant messenger (IM)"
|
||||||
msgstr ""
|
msgstr "Actualizacións por mensaxería instantánea (MI)"
|
||||||
|
|
||||||
#: lib/connectsettingsaction.php:116
|
#: lib/connectsettingsaction.php:116
|
||||||
msgid "Updates by SMS"
|
msgid "Updates by SMS"
|
||||||
@ -5868,7 +5868,7 @@ msgid ""
|
|||||||
"You can upload your personal background image. The maximum file size is 2MB."
|
"You can upload your personal background image. The maximum file size is 2MB."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Pode cargar a súa imaxe de fondo persoal. O ficheiro non pode ocupar máis de "
|
"Pode cargar a súa imaxe de fondo persoal. O ficheiro non pode ocupar máis de "
|
||||||
"2 MiB."
|
"2MB."
|
||||||
|
|
||||||
#: lib/designsettings.php:418
|
#: lib/designsettings.php:418
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
@ -5900,7 +5900,7 @@ msgstr "Atom"
|
|||||||
|
|
||||||
#: lib/feed.php:91
|
#: lib/feed.php:91
|
||||||
msgid "FOAF"
|
msgid "FOAF"
|
||||||
msgstr "FOAF"
|
msgstr "Amigo dun amigo"
|
||||||
|
|
||||||
#: lib/feedlist.php:64
|
#: lib/feedlist.php:64
|
||||||
msgid "Export data"
|
msgid "Export data"
|
||||||
@ -5908,7 +5908,7 @@ msgstr "Exportar os datos"
|
|||||||
|
|
||||||
#: lib/galleryaction.php:121
|
#: lib/galleryaction.php:121
|
||||||
msgid "Filter tags"
|
msgid "Filter tags"
|
||||||
msgstr "Filtrar etiquetas"
|
msgstr "Filtrar as etiquetas"
|
||||||
|
|
||||||
#: lib/galleryaction.php:131
|
#: lib/galleryaction.php:131
|
||||||
msgid "All"
|
msgid "All"
|
||||||
@ -5933,7 +5933,7 @@ msgstr "Continuar"
|
|||||||
#: lib/grantroleform.php:91
|
#: lib/grantroleform.php:91
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Grant this user the \"%s\" role"
|
msgid "Grant this user the \"%s\" role"
|
||||||
msgstr "Atribuírlle a este usuario o rol «%s»"
|
msgstr "Outorgarlle a este usuario o rol \"%s\""
|
||||||
|
|
||||||
#: lib/groupeditform.php:163
|
#: lib/groupeditform.php:163
|
||||||
msgid "URL of the homepage or blog of the group or topic"
|
msgid "URL of the homepage or blog of the group or topic"
|
||||||
@ -5952,8 +5952,8 @@ msgstr "Describa o grupo ou o tema en %d caracteres"
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Location for the group, if any, like \"City, State (or Region), Country\""
|
"Location for the group, if any, like \"City, State (or Region), Country\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Localidade do grupo, e a ten, como por exemplo «Cidade, Provincia, "
|
"Localidade do grupo, se a ten, como por exemplo \"Cidade, Provincia, "
|
||||||
"Comunidade, País»."
|
"Comunidade, País\""
|
||||||
|
|
||||||
#: lib/groupeditform.php:187
|
#: lib/groupeditform.php:187
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -6043,11 +6043,11 @@ msgstr "Non se coñece o tipo de ficheiro"
|
|||||||
|
|
||||||
#: lib/imagefile.php:244
|
#: lib/imagefile.php:244
|
||||||
msgid "MB"
|
msgid "MB"
|
||||||
msgstr "MiB"
|
msgstr "MB"
|
||||||
|
|
||||||
#: lib/imagefile.php:246
|
#: lib/imagefile.php:246
|
||||||
msgid "kB"
|
msgid "kB"
|
||||||
msgstr "KiB"
|
msgstr "kB"
|
||||||
|
|
||||||
#: lib/jabber.php:387
|
#: lib/jabber.php:387
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -6264,7 +6264,7 @@ msgstr ""
|
|||||||
"\n"
|
"\n"
|
||||||
"%4$s\n"
|
"%4$s\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Non responda a este correo, non lle chegará ao remitente.\n"
|
"Non responda a esta mensaxe, non lle chegará ao remitente.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Atentamente,\n"
|
"Atentamente,\n"
|
||||||
"%5$s\n"
|
"%5$s\n"
|
||||||
@ -6322,7 +6322,7 @@ msgid ""
|
|||||||
"\n"
|
"\n"
|
||||||
"\t%s"
|
"\t%s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Pode ler a conversación completa en:\n"
|
"Pode ler a conversa completa en:\n"
|
||||||
"\n"
|
"\n"
|
||||||
"%s"
|
"%s"
|
||||||
|
|
||||||
@ -6358,7 +6358,7 @@ msgid ""
|
|||||||
"\n"
|
"\n"
|
||||||
"P.S. You can turn off these email notifications here: %8$s\n"
|
"P.S. You can turn off these email notifications here: %8$s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"%1$s (@%9$s) acaba de enviar unha nota á súa atención (un “respost@”) en %2"
|
"%1$s (@%9$s) acaba de enviar unha nota á súa atención (unha resposta) en %2"
|
||||||
"$s.\n"
|
"$s.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"A nota está en:\n"
|
"A nota está en:\n"
|
||||||
@ -6373,14 +6373,14 @@ msgstr ""
|
|||||||
"\n"
|
"\n"
|
||||||
"%6$s\n"
|
"%6$s\n"
|
||||||
"\n"
|
"\n"
|
||||||
"A lista de todas as notas á súa @tención está en:\n"
|
"A lista de todas as respostas está en:\n"
|
||||||
"\n"
|
"\n"
|
||||||
"%7$s\n"
|
"%7$s\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Atentamente,\n"
|
"Atentamente,\n"
|
||||||
"%2$s\n"
|
"%2$s\n"
|
||||||
"\n"
|
"\n"
|
||||||
"P.S: pode desactivar estas notificacións por correo electrónico en %8$s\n"
|
"P.S.: pode desactivar estas notificacións por correo electrónico en %8$s\n"
|
||||||
|
|
||||||
#: lib/mailbox.php:89
|
#: lib/mailbox.php:89
|
||||||
msgid "Only the user can read their own mailboxes."
|
msgid "Only the user can read their own mailboxes."
|
||||||
@ -6417,7 +6417,7 @@ msgstr "Non se permite recibir correo electrónico."
|
|||||||
#: lib/mailhandler.php:228
|
#: lib/mailhandler.php:228
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Unsupported message type: %s"
|
msgid "Unsupported message type: %s"
|
||||||
msgstr "Non se soporta o tipo de mensaxe %s"
|
msgstr "Non se soporta o tipo de mensaxe: %s"
|
||||||
|
|
||||||
#: lib/mediafile.php:98 lib/mediafile.php:123
|
#: lib/mediafile.php:98 lib/mediafile.php:123
|
||||||
msgid "There was a database error while saving your file. Please try again."
|
msgid "There was a database error while saving your file. Please try again."
|
||||||
@ -6446,7 +6446,7 @@ msgstr "Falta un cartafol temporal."
|
|||||||
|
|
||||||
#: lib/mediafile.php:162
|
#: lib/mediafile.php:162
|
||||||
msgid "Failed to write file to disk."
|
msgid "Failed to write file to disk."
|
||||||
msgstr "Non se puido escribir o ficheiro en disco."
|
msgstr "Non se puido escribir o ficheiro no disco."
|
||||||
|
|
||||||
#: lib/mediafile.php:165
|
#: lib/mediafile.php:165
|
||||||
msgid "File upload stopped by extension."
|
msgid "File upload stopped by extension."
|
||||||
@ -6480,7 +6480,7 @@ msgstr "Enviar unha nota directa"
|
|||||||
|
|
||||||
#: lib/messageform.php:146
|
#: lib/messageform.php:146
|
||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr "a"
|
msgstr "A"
|
||||||
|
|
||||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
@ -6522,7 +6522,7 @@ msgid ""
|
|||||||
"try again later"
|
"try again later"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Estase tardando máis do esperado en obter a súa xeolocalización, vólvao "
|
"Estase tardando máis do esperado en obter a súa xeolocalización, vólvao "
|
||||||
"intentar máis tarde."
|
"intentar máis tarde"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of north
|
#. TRANS: Used in coordinates as abbreviation of north
|
||||||
#: lib/noticelist.php:430
|
#: lib/noticelist.php:430
|
||||||
@ -6547,7 +6547,7 @@ msgstr "O"
|
|||||||
#: lib/noticelist.php:438
|
#: lib/noticelist.php:438
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||||
msgstr "1% u $ ½% 2 $ u '% 3 $ u \"s% 4% 5 $ u $ ½% 6 $ u' 7% $ u\" 8% $ s"
|
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||||
|
|
||||||
#: lib/noticelist.php:447
|
#: lib/noticelist.php:447
|
||||||
msgid "at"
|
msgid "at"
|
||||||
@ -6642,7 +6642,7 @@ msgstr "As mensaxes enviadas"
|
|||||||
msgid "Tags in %s's notices"
|
msgid "Tags in %s's notices"
|
||||||
msgstr "Etiquetas nas notas de %s"
|
msgstr "Etiquetas nas notas de %s"
|
||||||
|
|
||||||
#: lib/plugin.php:114
|
#: lib/plugin.php:115
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr "Descoñecida"
|
msgstr "Descoñecida"
|
||||||
|
|
||||||
@ -6705,11 +6705,11 @@ msgstr "Populares"
|
|||||||
|
|
||||||
#: lib/redirectingaction.php:94
|
#: lib/redirectingaction.php:94
|
||||||
msgid "No return-to arguments."
|
msgid "No return-to arguments."
|
||||||
msgstr "Sen argumentos “return-to”."
|
msgstr "Sen argumentos \"return-to\"."
|
||||||
|
|
||||||
#: lib/repeatform.php:107
|
#: lib/repeatform.php:107
|
||||||
msgid "Repeat this notice?"
|
msgid "Repeat this notice?"
|
||||||
msgstr "Quere repetir esta nova?"
|
msgstr "Quere repetir esta nota?"
|
||||||
|
|
||||||
#: lib/repeatform.php:132
|
#: lib/repeatform.php:132
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
@ -6717,12 +6717,12 @@ msgstr "Si"
|
|||||||
|
|
||||||
#: lib/repeatform.php:132
|
#: lib/repeatform.php:132
|
||||||
msgid "Repeat this notice"
|
msgid "Repeat this notice"
|
||||||
msgstr "Repetir esta nova"
|
msgstr "Repetir esta nota"
|
||||||
|
|
||||||
#: lib/revokeroleform.php:91
|
#: lib/revokeroleform.php:91
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Revoke the \"%s\" role from this user"
|
msgid "Revoke the \"%s\" role from this user"
|
||||||
msgstr "Revogarlle o rol “%s” a este usuario"
|
msgstr "Revogarlle o rol \"%s\" a este usuario"
|
||||||
|
|
||||||
#: lib/router.php:704
|
#: lib/router.php:704
|
||||||
msgid "No single user defined for single-user mode."
|
msgid "No single user defined for single-user mode."
|
||||||
@ -6806,7 +6806,7 @@ msgstr "Convidar"
|
|||||||
#: lib/subgroupnav.php:106
|
#: lib/subgroupnav.php:106
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Invite friends and colleagues to join you on %s"
|
msgid "Invite friends and colleagues to join you on %s"
|
||||||
msgstr "Convida a amigos e compañeiros a unírseche en %s"
|
msgstr "Convide a amigos e compañeiros a unírselle en %s"
|
||||||
|
|
||||||
#: lib/subscriberspeopleselftagcloudsection.php:48
|
#: lib/subscriberspeopleselftagcloudsection.php:48
|
||||||
#: lib/subscriptionspeopleselftagcloudsection.php:48
|
#: lib/subscriptionspeopleselftagcloudsection.php:48
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-04-26 22:15+0000\n"
|
"POT-Creation-Date: 2010-04-29 23:21+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -4575,7 +4575,7 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
||||||
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
||||||
#: classes/Notice.php:1535
|
#: classes/Notice.php:1533
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "RT @%1$s %2$s"
|
msgid "RT @%1$s %2$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -4927,7 +4927,7 @@ msgid "Before"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a feed instance is a DOMDocument.
|
#. TRANS: Client exception thrown when a feed instance is a DOMDocument.
|
||||||
#: lib/activity.php:121
|
#: lib/activity.php:122
|
||||||
msgid "Expecting a root feed element but got a whole XML document."
|
msgid "Expecting a root feed element but got a whole XML document."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4935,11 +4935,11 @@ msgstr ""
|
|||||||
msgid "Can't handle remote content yet."
|
msgid "Can't handle remote content yet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/activityutils.php:236
|
#: lib/activityutils.php:244
|
||||||
msgid "Can't handle embedded XML content yet."
|
msgid "Can't handle embedded XML content yet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/activityutils.php:240
|
#: lib/activityutils.php:248
|
||||||
msgid "Can't handle embedded Base64 content yet."
|
msgid "Can't handle embedded Base64 content yet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -6166,7 +6166,7 @@ msgstr ""
|
|||||||
msgid "Tags in %s's notices"
|
msgid "Tags in %s's notices"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/plugin.php:114
|
#: lib/plugin.php:115
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -9,12 +9,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-04-24 14:16+0000\n"
|
"POT-Creation-Date: 2010-04-29 23:21+0000\n"
|
||||||
"PO-Revision-Date: 2010-04-26 22:18:38+0000\n"
|
"PO-Revision-Date: 2010-04-29 23:23:35+0000\n"
|
||||||
"Language-Team: Telugu\n"
|
"Language-Team: Telugu\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.17alpha (r65552); Translate extension (2010-04-25)\n"
|
"X-Generator: MediaWiki 1.17alpha (r65675); Translate extension (2010-04-25)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: te\n"
|
"X-Language-Code: te\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -2113,6 +2113,8 @@ msgid ""
|
|||||||
"You will be notified when your invitees accept the invitation and register "
|
"You will be notified when your invitees accept the invitation and register "
|
||||||
"on the site. Thanks for growing the community!"
|
"on the site. Thanks for growing the community!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"ఆహ్వానితులు మీ ఆహ్వానాన్ని అంగీకరించి సైటులో నమోదైనప్పుడు మీకు తెలియజేస్తాము. ఇక్కడి ప్రజని "
|
||||||
|
"పెంచుతున్నందుకు ధన్యవాదాలు!"
|
||||||
|
|
||||||
#: actions/invite.php:162
|
#: actions/invite.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -2450,7 +2452,7 @@ msgstr "మీరు నమోదు చేసివున్న ఉపకరణ
|
|||||||
#: actions/oauthappssettings.php:135
|
#: actions/oauthappssettings.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "You have not registered any applications yet."
|
msgid "You have not registered any applications yet."
|
||||||
msgstr ""
|
msgstr "మీరు ఇంకా ఏ ఉపకరణాన్నీ నమోదు చేసుకోలేదు."
|
||||||
|
|
||||||
#: actions/oauthconnectionssettings.php:72
|
#: actions/oauthconnectionssettings.php:72
|
||||||
msgid "Connected applications"
|
msgid "Connected applications"
|
||||||
@ -2471,7 +2473,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: actions/oauthconnectionssettings.php:198
|
#: actions/oauthconnectionssettings.php:198
|
||||||
msgid "You have not authorized any applications to use your account."
|
msgid "You have not authorized any applications to use your account."
|
||||||
msgstr ""
|
msgstr "మీ ఖాతాని ఉపయోగించుకోడానికి మీరు ఏ ఉపకరణాన్నీ అధీకరించలేదు."
|
||||||
|
|
||||||
#: actions/oauthconnectionssettings.php:211
|
#: actions/oauthconnectionssettings.php:211
|
||||||
msgid "Developers can edit the registration settings for their applications "
|
msgid "Developers can edit the registration settings for their applications "
|
||||||
@ -3907,7 +3909,7 @@ msgstr "అప్రమేయ భాష"
|
|||||||
|
|
||||||
#: actions/siteadminpanel.php:263
|
#: actions/siteadminpanel.php:263
|
||||||
msgid "Site language when autodetection from browser settings is not available"
|
msgid "Site language when autodetection from browser settings is not available"
|
||||||
msgstr ""
|
msgstr "విహారిణి అమరికల నుండి భాషని స్వయంచాలకంగా పొందలేకపోయినప్పుడు ఉపయోగించే సైటు భాష"
|
||||||
|
|
||||||
#: actions/siteadminpanel.php:271
|
#: actions/siteadminpanel.php:271
|
||||||
msgid "Limits"
|
msgid "Limits"
|
||||||
@ -3927,7 +3929,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: actions/siteadminpanel.php:278
|
#: actions/siteadminpanel.php:278
|
||||||
msgid "How long users must wait (in seconds) to post the same thing again."
|
msgid "How long users must wait (in seconds) to post the same thing again."
|
||||||
msgstr ""
|
msgstr "అదే విషయాన్ని మళ్ళీ టపా చేయడానికి వాడుకరులు ఎంత సమయం (క్షణాల్లో) వేచివుండాలి."
|
||||||
|
|
||||||
#: actions/sitenoticeadminpanel.php:56
|
#: actions/sitenoticeadminpanel.php:56
|
||||||
msgid "Site Notice"
|
msgid "Site Notice"
|
||||||
@ -4234,6 +4236,8 @@ msgid ""
|
|||||||
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
|
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
|
||||||
"%) and be the first?"
|
"%) and be the first?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"%sకి చందాదార్లు ఎవరూ లేరు. [ఒక ఖాతాని నమోదు చేసుకుని](%%%%action.register%%%%) మీరు "
|
||||||
|
"ఎందుకు మొదటి చందాదారు కాకూడదు?"
|
||||||
|
|
||||||
#: actions/subscriptions.php:52
|
#: actions/subscriptions.php:52
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -4247,12 +4251,12 @@ msgstr "%1$s చందాలు, పేజీ %2$d"
|
|||||||
|
|
||||||
#: actions/subscriptions.php:65
|
#: actions/subscriptions.php:65
|
||||||
msgid "These are the people whose notices you listen to."
|
msgid "These are the people whose notices you listen to."
|
||||||
msgstr ""
|
msgstr "మీరు ఈ వ్యక్తుల నోటీసులని వింటున్నారు."
|
||||||
|
|
||||||
#: actions/subscriptions.php:69
|
#: actions/subscriptions.php:69
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "These are the people whose notices %s listens to."
|
msgid "These are the people whose notices %s listens to."
|
||||||
msgstr ""
|
msgstr "%s వీరి నోటీసులని వింటున్నారు."
|
||||||
|
|
||||||
#: actions/subscriptions.php:126
|
#: actions/subscriptions.php:126
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -4729,7 +4733,7 @@ msgstr "సందేశాన్ని భద్రపరచడంలో పొ
|
|||||||
|
|
||||||
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
||||||
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
||||||
#: classes/Notice.php:1535
|
#: classes/Notice.php:1533
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "RT @%1$s %2$s"
|
msgid "RT @%1$s %2$s"
|
||||||
msgstr "RT @%1$s %2$s"
|
msgstr "RT @%1$s %2$s"
|
||||||
@ -5096,7 +5100,7 @@ msgid "Before"
|
|||||||
msgstr "ఇంతక్రితం"
|
msgstr "ఇంతక్రితం"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a feed instance is a DOMDocument.
|
#. TRANS: Client exception thrown when a feed instance is a DOMDocument.
|
||||||
#: lib/activity.php:121
|
#: lib/activity.php:122
|
||||||
msgid "Expecting a root feed element but got a whole XML document."
|
msgid "Expecting a root feed element but got a whole XML document."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5104,11 +5108,11 @@ msgstr ""
|
|||||||
msgid "Can't handle remote content yet."
|
msgid "Can't handle remote content yet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/activityutils.php:236
|
#: lib/activityutils.php:244
|
||||||
msgid "Can't handle embedded XML content yet."
|
msgid "Can't handle embedded XML content yet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/activityutils.php:240
|
#: lib/activityutils.php:248
|
||||||
msgid "Can't handle embedded Base64 content yet."
|
msgid "Can't handle embedded Base64 content yet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5465,9 +5469,9 @@ msgstr ""
|
|||||||
#. TRANS: Message given if content is too long.
|
#. TRANS: Message given if content is too long.
|
||||||
#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters.
|
#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters.
|
||||||
#: lib/command.php:472
|
#: lib/command.php:472
|
||||||
#, fuzzy, php-format
|
#, php-format
|
||||||
msgid "Message too long - maximum is %1$d characters, you sent %2$d"
|
msgid "Message too long - maximum is %1$d characters, you sent %2$d"
|
||||||
msgstr "నోటిసు చాలా పొడవుగా ఉంది - %1$d అక్షరాలు గరిష్ఠం, మీరు %2$d పంపించారు."
|
msgstr "సందేశం చాలా పొడవుగా ఉంది - %1$d అక్షరాలు గరిష్ఠం, మీరు %2$d పంపించారు"
|
||||||
|
|
||||||
#. TRANS: Message given have sent a direct message to another user.
|
#. TRANS: Message given have sent a direct message to another user.
|
||||||
#. TRANS: %s is the name of the other user.
|
#. TRANS: %s is the name of the other user.
|
||||||
@ -6452,7 +6456,7 @@ msgstr "మీరు పంపిన సందేశాలు"
|
|||||||
msgid "Tags in %s's notices"
|
msgid "Tags in %s's notices"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/plugin.php:114
|
#: lib/plugin.php:115
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
21
plugins/AutoSandbox/locale/AutoSandbox.pot
Normal file
21
plugins/AutoSandbox/locale/AutoSandbox.pot
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: AutoSandboxPlugin.php:66
|
||||||
|
msgid "Automatically sandboxes newly registered members."
|
||||||
|
msgstr ""
|
24
plugins/Autocomplete/locale/Autocomplete.pot
Normal file
24
plugins/Autocomplete/locale/Autocomplete.pot
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: AutocompletePlugin.php:79
|
||||||
|
msgid ""
|
||||||
|
"The autocomplete plugin allows users to autocomplete screen names in @ "
|
||||||
|
"replies. When an \"@\" is typed into the notice text area, an autocomplete "
|
||||||
|
"box is displayed populated with the user's friend' screen names."
|
||||||
|
msgstr ""
|
22
plugins/BitlyUrl/locale/BitlyUrl.pot
Normal file
22
plugins/BitlyUrl/locale/BitlyUrl.pot
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: BitlyUrlPlugin.php:60
|
||||||
|
#, php-format
|
||||||
|
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||||
|
msgstr ""
|
54
plugins/Blacklist/locale/Blacklist.pot
Normal file
54
plugins/Blacklist/locale/Blacklist.pot
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: BlacklistPlugin.php:153
|
||||||
|
#, php-format
|
||||||
|
msgid "You may not register with homepage '%s'"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: BlacklistPlugin.php:163
|
||||||
|
#, php-format
|
||||||
|
msgid "You may not register with nickname '%s'"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: BlacklistPlugin.php:188
|
||||||
|
#, php-format
|
||||||
|
msgid "You may not use homepage '%s'"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: BlacklistPlugin.php:198
|
||||||
|
#, php-format
|
||||||
|
msgid "You may not use nickname '%s'"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: BlacklistPlugin.php:242
|
||||||
|
#, php-format
|
||||||
|
msgid "You may not use url '%s' in notices"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: BlacklistPlugin.php:351
|
||||||
|
msgid "Keep a blacklist of forbidden nickname and URL patterns."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: blacklistadminpanel.php:185
|
||||||
|
msgid "Nicknames"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: blacklistadminpanel.php:193
|
||||||
|
msgid "URLs"
|
||||||
|
msgstr ""
|
35
plugins/CasAuthentication/locale/CasAuthentication.pot
Normal file
35
plugins/CasAuthentication/locale/CasAuthentication.pot
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: CasAuthenticationPlugin.php:82
|
||||||
|
msgid "CAS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: CasAuthenticationPlugin.php:83
|
||||||
|
msgid "Login or register with CAS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: CasAuthenticationPlugin.php:150
|
||||||
|
msgid ""
|
||||||
|
"The CAS Authentication plugin allows for StatusNet to handle authentication "
|
||||||
|
"through CAS (Central Authentication Service)."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: caslogin.php:28
|
||||||
|
msgid "Already logged in."
|
||||||
|
msgstr ""
|
27
plugins/ClientSideShorten/locale/ClientSideShorten.pot
Normal file
27
plugins/ClientSideShorten/locale/ClientSideShorten.pot
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: ClientSideShortenPlugin.php:74
|
||||||
|
msgid ""
|
||||||
|
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||||
|
"shorten urls as they entered, and before the notice is submitted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: shorten.php:55
|
||||||
|
msgid "'text' argument must be specified."
|
||||||
|
msgstr ""
|
21
plugins/DirectionDetector/locale/DirectionDetector.pot
Normal file
21
plugins/DirectionDetector/locale/DirectionDetector.pot
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: DirectionDetectorPlugin.php:221
|
||||||
|
msgid "shows notices with right-to-left content in correct direction."
|
||||||
|
msgstr ""
|
23
plugins/EmailAuthentication/locale/EmailAuthentication.pot
Normal file
23
plugins/EmailAuthentication/locale/EmailAuthentication.pot
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: EmailAuthenticationPlugin.php:61
|
||||||
|
msgid ""
|
||||||
|
"The Email Authentication plugin allows users to login using their email "
|
||||||
|
"address."
|
||||||
|
msgstr ""
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-03-01 14:58-0800\n"
|
"POT-Creation-Date: 2010-04-29 23:39+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -16,201 +16,6 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=CHARSET\n"
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: facebookaction.php:171
|
|
||||||
msgid "Home"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookaction.php:179
|
|
||||||
msgid "Invite"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookaction.php:188
|
|
||||||
msgid "Settings"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookaction.php:228
|
|
||||||
#, php-format
|
|
||||||
msgid ""
|
|
||||||
"To use the %s Facebook Application you need to login with your username and "
|
|
||||||
"password. Don't have a username yet? "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookaction.php:230
|
|
||||||
msgid " a new account."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookaction.php:236
|
|
||||||
msgid "Register"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookaction.php:249 facebookaction.php:275 facebooklogin.php:91
|
|
||||||
msgid "Login"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookaction.php:268
|
|
||||||
msgid "Nickname"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookaction.php:271 FBConnectAuth.php:196
|
|
||||||
msgid "Password"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookaction.php:281
|
|
||||||
msgid "Lost or forgotten password?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookaction.php:330 facebookhome.php:248
|
|
||||||
msgid "Pagination"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookaction.php:339 facebookhome.php:257
|
|
||||||
msgid "After"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookaction.php:347 facebookhome.php:265
|
|
||||||
msgid "Before"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookaction.php:365
|
|
||||||
msgid "No notice content!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookaction.php:371
|
|
||||||
#, php-format
|
|
||||||
msgid "That's too long. Max notice size is %d chars."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookaction.php:430
|
|
||||||
msgid "Notices"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookhome.php:111
|
|
||||||
msgid "Server error - couldn't get user!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookhome.php:131
|
|
||||||
msgid "Incorrect username or password."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookhome.php:158
|
|
||||||
#, php-format
|
|
||||||
msgid "%s and friends, page %d"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookhome.php:160
|
|
||||||
#, php-format
|
|
||||||
msgid "%s and friends"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookhome.php:189
|
|
||||||
#, php-format
|
|
||||||
msgid ""
|
|
||||||
"If you would like the %s app to automatically update your Facebook status "
|
|
||||||
"with your latest notice, you need to give it permission."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookhome.php:213
|
|
||||||
msgid "Okay, do it!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookhome.php:219
|
|
||||||
msgid "Skip"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookinvite.php:72
|
|
||||||
#, php-format
|
|
||||||
msgid "Thanks for inviting your friends to use %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookinvite.php:74
|
|
||||||
msgid "Invitations have been sent to the following users:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookinvite.php:94
|
|
||||||
#, php-format
|
|
||||||
msgid "You have been invited to %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookinvite.php:103
|
|
||||||
#, php-format
|
|
||||||
msgid "Invite your friends to use %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookinvite.php:125
|
|
||||||
#, php-format
|
|
||||||
msgid "Friends already using %s:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookinvite.php:143
|
|
||||||
msgid "Send invitations"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: FacebookPlugin.php:413 FacebookPlugin.php:433
|
|
||||||
msgid "Facebook"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: FacebookPlugin.php:414
|
|
||||||
msgid "Login or register using Facebook"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: FacebookPlugin.php:434 FBConnectSettings.php:56
|
|
||||||
msgid "Facebook Connect Settings"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: FacebookPlugin.php:533
|
|
||||||
msgid ""
|
|
||||||
"The Facebook plugin allows you to integrate your StatusNet instance with <a "
|
|
||||||
"href=\"http://facebook.com/\">Facebook</a> and Facebook Connect."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookremove.php:58
|
|
||||||
msgid "Couldn't remove Facebook user."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebooksettings.php:74
|
|
||||||
msgid "There was a problem saving your sync preferences!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebooksettings.php:76
|
|
||||||
msgid "Sync preferences saved."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebooksettings.php:99
|
|
||||||
msgid "Automatically update my Facebook status with my notices."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebooksettings.php:106
|
|
||||||
msgid "Send \"@\" replies to Facebook."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebooksettings.php:115
|
|
||||||
msgid "Prefix"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebooksettings.php:117
|
|
||||||
msgid "A string to prefix notices with."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebooksettings.php:123
|
|
||||||
msgid "Save"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebooksettings.php:133
|
|
||||||
#, php-format
|
|
||||||
msgid ""
|
|
||||||
"If you would like %s to automatically update your Facebook status with your "
|
|
||||||
"latest notice, you need to give it permission."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebooksettings.php:146
|
|
||||||
#, php-format
|
|
||||||
msgid "Allow %s to update my Facebook status"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebooksettings.php:156
|
|
||||||
msgid "Sync preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: facebookutil.php:285
|
#: facebookutil.php:285
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -258,85 +63,180 @@ msgstr ""
|
|||||||
msgid "Facebook Account Setup"
|
msgid "Facebook Account Setup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: FBConnectAuth.php:153
|
#: FBConnectAuth.php:158
|
||||||
msgid "Connection options"
|
msgid "Connection options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: FBConnectAuth.php:162
|
#: FBConnectAuth.php:183
|
||||||
msgid "My text and files are available under "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: FBConnectAuth.php:165
|
|
||||||
msgid ""
|
|
||||||
" except this private data: password, email address, IM address, phone number."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: FBConnectAuth.php:173
|
|
||||||
msgid "Create new account"
|
msgid "Create new account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: FBConnectAuth.php:175
|
#: FBConnectAuth.php:185
|
||||||
msgid "Create a new user with this nickname."
|
msgid "Create a new user with this nickname."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: FBConnectAuth.php:178
|
#: FBConnectAuth.php:188
|
||||||
msgid "New nickname"
|
msgid "New nickname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: FBConnectAuth.php:180
|
#: FBConnectAuth.php:190
|
||||||
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
|
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: FBConnectAuth.php:183
|
#: FBConnectAuth.php:193
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: FBConnectAuth.php:188
|
#: FBConnectAuth.php:198
|
||||||
msgid "Connect existing account"
|
msgid "Connect existing account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: FBConnectAuth.php:190
|
#: FBConnectAuth.php:200
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you already have an account, login with your username and password to "
|
"If you already have an account, login with your username and password to "
|
||||||
"connect it to your Facebook."
|
"connect it to your Facebook."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: FBConnectAuth.php:193
|
#: FBConnectAuth.php:203
|
||||||
msgid "Existing nickname"
|
msgid "Existing nickname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: FBConnectAuth.php:199
|
#: FBConnectAuth.php:206 facebookaction.php:271
|
||||||
|
msgid "Password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: FBConnectAuth.php:209
|
||||||
msgid "Connect"
|
msgid "Connect"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: FBConnectAuth.php:215 FBConnectAuth.php:224
|
#: FBConnectAuth.php:225 FBConnectAuth.php:234
|
||||||
msgid "Registration not allowed."
|
msgid "Registration not allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: FBConnectAuth.php:231
|
#: FBConnectAuth.php:241
|
||||||
msgid "Not a valid invitation code."
|
msgid "Not a valid invitation code."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: FBConnectAuth.php:241
|
#: FBConnectAuth.php:251
|
||||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: FBConnectAuth.php:246
|
#: FBConnectAuth.php:256
|
||||||
msgid "Nickname not allowed."
|
msgid "Nickname not allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: FBConnectAuth.php:251
|
#: FBConnectAuth.php:261
|
||||||
msgid "Nickname already in use. Try another one."
|
msgid "Nickname already in use. Try another one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: FBConnectAuth.php:269 FBConnectAuth.php:303 FBConnectAuth.php:323
|
#: FBConnectAuth.php:279 FBConnectAuth.php:313 FBConnectAuth.php:333
|
||||||
msgid "Error connecting user to Facebook."
|
msgid "Error connecting user to Facebook."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: FBConnectAuth.php:289
|
#: FBConnectAuth.php:299
|
||||||
msgid "Invalid username or password."
|
msgid "Invalid username or password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebooklogin.php:91 facebookaction.php:249 facebookaction.php:275
|
||||||
|
msgid "Login"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookhome.php:111
|
||||||
|
msgid "Server error - couldn't get user!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookhome.php:131
|
||||||
|
msgid "Incorrect username or password."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookhome.php:158
|
||||||
|
#, php-format
|
||||||
|
msgid "%s and friends, page %d"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookhome.php:160
|
||||||
|
#, php-format
|
||||||
|
msgid "%s and friends"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookhome.php:189
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"If you would like the %s app to automatically update your Facebook status "
|
||||||
|
"with your latest notice, you need to give it permission."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookhome.php:213
|
||||||
|
msgid "Okay, do it!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookhome.php:219
|
||||||
|
msgid "Skip"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookhome.php:248 facebookaction.php:330
|
||||||
|
msgid "Pagination"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookhome.php:257 facebookaction.php:339
|
||||||
|
msgid "After"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookhome.php:265 facebookaction.php:347
|
||||||
|
msgid "Before"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookinvite.php:72
|
||||||
|
#, php-format
|
||||||
|
msgid "Thanks for inviting your friends to use %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookinvite.php:74
|
||||||
|
msgid "Invitations have been sent to the following users:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookinvite.php:94
|
||||||
|
#, php-format
|
||||||
|
msgid "You have been invited to %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookinvite.php:103
|
||||||
|
#, php-format
|
||||||
|
msgid "Invite your friends to use %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookinvite.php:125
|
||||||
|
#, php-format
|
||||||
|
msgid "Friends already using %s:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookinvite.php:143
|
||||||
|
msgid "Send invitations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: FacebookPlugin.php:195 FacebookPlugin.php:488 FacebookPlugin.php:510
|
||||||
|
#: facebookadminpanel.php:54
|
||||||
|
msgid "Facebook"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: FacebookPlugin.php:196
|
||||||
|
msgid "Facebook integration configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: FacebookPlugin.php:489
|
||||||
|
msgid "Login or register using Facebook"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: FacebookPlugin.php:511 FBConnectSettings.php:56
|
||||||
|
msgid "Facebook Connect Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: FacebookPlugin.php:617
|
||||||
|
msgid ""
|
||||||
|
"The Facebook plugin allows you to integrate your StatusNet instance with <a "
|
||||||
|
"href=\"http://facebook.com/\">Facebook</a> and Facebook Connect."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: FBConnectLogin.php:33
|
#: FBConnectLogin.php:33
|
||||||
msgid "Already logged in."
|
msgid "Already logged in."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -349,6 +249,90 @@ msgstr ""
|
|||||||
msgid "Facebook Login"
|
msgid "Facebook Login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookremove.php:58
|
||||||
|
msgid "Couldn't remove Facebook user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookaction.php:171
|
||||||
|
msgid "Home"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookaction.php:179
|
||||||
|
msgid "Invite"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookaction.php:188
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookaction.php:228
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"To use the %s Facebook Application you need to login with your username and "
|
||||||
|
"password. Don't have a username yet? "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookaction.php:230
|
||||||
|
msgid " a new account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookaction.php:236
|
||||||
|
msgid "Register"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookaction.php:268
|
||||||
|
msgid "Nickname"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookaction.php:281
|
||||||
|
msgid "Lost or forgotten password?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookaction.php:365
|
||||||
|
msgid "No notice content!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookaction.php:371
|
||||||
|
#, php-format
|
||||||
|
msgid "That's too long. Max notice size is %d chars."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookaction.php:430
|
||||||
|
msgid "Notices"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookadminpanel.php:65
|
||||||
|
msgid "Facebook integration settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookadminpanel.php:129
|
||||||
|
msgid "Invalid Facebook API key. Max length is 255 characters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookadminpanel.php:135
|
||||||
|
msgid "Invalid Facebook API secret. Max length is 255 characters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookadminpanel.php:188
|
||||||
|
msgid "Facebook application settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookadminpanel.php:194
|
||||||
|
msgid "API key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookadminpanel.php:195
|
||||||
|
msgid "API key provided by Facebook"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookadminpanel.php:203
|
||||||
|
msgid "Secret"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebookadminpanel.php:204
|
||||||
|
msgid "API secret provided by Facebook"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: FBConnectSettings.php:67
|
#: FBConnectSettings.php:67
|
||||||
msgid "Manage how your account connects to Facebook"
|
msgid "Manage how your account connects to Facebook"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -393,3 +377,47 @@ msgstr ""
|
|||||||
#: FBConnectSettings.php:197
|
#: FBConnectSettings.php:197
|
||||||
msgid "Not sure what you're trying to do."
|
msgid "Not sure what you're trying to do."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebooksettings.php:74
|
||||||
|
msgid "There was a problem saving your sync preferences!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebooksettings.php:76
|
||||||
|
msgid "Sync preferences saved."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebooksettings.php:99
|
||||||
|
msgid "Automatically update my Facebook status with my notices."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebooksettings.php:106
|
||||||
|
msgid "Send \"@\" replies to Facebook."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebooksettings.php:115
|
||||||
|
msgid "Prefix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebooksettings.php:117
|
||||||
|
msgid "A string to prefix notices with."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebooksettings.php:123
|
||||||
|
msgid "Save"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebooksettings.php:133
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"If you would like %s to automatically update your Facebook status with your "
|
||||||
|
"latest notice, you need to give it permission."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebooksettings.php:146
|
||||||
|
#, php-format
|
||||||
|
msgid "Allow %s to update my Facebook status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: facebooksettings.php:156
|
||||||
|
msgid "Sync preferences"
|
||||||
|
msgstr ""
|
||||||
|
21
plugins/FirePHP/locale/FirePHP.pot
Normal file
21
plugins/FirePHP/locale/FirePHP.pot
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: FirePHPPlugin.php:66
|
||||||
|
msgid "The FirePHP plugin writes StatusNet's log output to FirePHP."
|
||||||
|
msgstr ""
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-03-01 14:58-0800\n"
|
"POT-Creation-Date: 2010-04-29 23:39+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
27
plugins/Imap/locale/Imap.pot
Normal file
27
plugins/Imap/locale/Imap.pot
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: imapmailhandler.php:28
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ImapPlugin.php:101
|
||||||
|
msgid ""
|
||||||
|
"The IMAP plugin allows for StatusNet to check a POP or IMAP mailbox for "
|
||||||
|
"incoming mail containing user posts."
|
||||||
|
msgstr ""
|
25
plugins/InfiniteScroll/locale/InfiniteScroll.pot
Normal file
25
plugins/InfiniteScroll/locale/InfiniteScroll.pot
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: InfiniteScrollPlugin.php:54
|
||||||
|
msgid ""
|
||||||
|
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||||
|
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||||
|
"page of notices is automatically retrieved and appended. This means they "
|
||||||
|
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||||
|
msgstr ""
|
23
plugins/LdapAuthentication/locale/LdapAuthentication.pot
Normal file
23
plugins/LdapAuthentication/locale/LdapAuthentication.pot
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: LdapAuthenticationPlugin.php:146
|
||||||
|
msgid ""
|
||||||
|
"The LDAP Authentication plugin allows for StatusNet to handle authentication "
|
||||||
|
"through LDAP."
|
||||||
|
msgstr ""
|
23
plugins/LdapAuthorization/locale/LdapAuthorization.pot
Normal file
23
plugins/LdapAuthorization/locale/LdapAuthorization.pot
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: LdapAuthorizationPlugin.php:124
|
||||||
|
msgid ""
|
||||||
|
"The LDAP Authorization plugin allows for StatusNet to handle authorization "
|
||||||
|
"through LDAP."
|
||||||
|
msgstr ""
|
22
plugins/LilUrl/locale/LilUrl.pot
Normal file
22
plugins/LilUrl/locale/LilUrl.pot
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: LilUrlPlugin.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||||
|
msgstr ""
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-03-01 14:58-0800\n"
|
"POT-Creation-Date: 2010-04-29 23:39+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -16,24 +16,6 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=CHARSET\n"
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: allmap.php:71
|
|
||||||
#, php-format
|
|
||||||
msgid "%s friends map"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: allmap.php:74
|
|
||||||
#, php-format
|
|
||||||
msgid "%s friends map, page %d"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: map.php:72
|
|
||||||
msgid "No such user."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: map.php:79
|
|
||||||
msgid "User has no profile."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: MapstractionPlugin.php:182
|
#: MapstractionPlugin.php:182
|
||||||
msgid "Map"
|
msgid "Map"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -48,6 +30,24 @@ msgid ""
|
|||||||
"mapstraction.com/\">Mapstraction</a> JavaScript library."
|
"mapstraction.com/\">Mapstraction</a> JavaScript library."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: map.php:72
|
||||||
|
msgid "No such user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: map.php:79
|
||||||
|
msgid "User has no profile."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: allmap.php:71
|
||||||
|
#, php-format
|
||||||
|
msgid "%s friends map"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: allmap.php:74
|
||||||
|
#, php-format
|
||||||
|
msgid "%s friends map, page %d"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: usermap.php:71
|
#: usermap.php:71
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s map, page %d"
|
msgid "%s map, page %d"
|
||||||
|
23
plugins/Minify/locale/Minify.pot
Normal file
23
plugins/Minify/locale/Minify.pot
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: MinifyPlugin.php:179
|
||||||
|
msgid ""
|
||||||
|
"The Minify plugin minifies your CSS and Javascript, removing whitespace and "
|
||||||
|
"comments."
|
||||||
|
msgstr ""
|
21
plugins/MobileProfile/locale/MobileProfile.pot
Normal file
21
plugins/MobileProfile/locale/MobileProfile.pot
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: MobileProfilePlugin.php:424
|
||||||
|
msgid "XHTML MobileProfile output for supporting user agents."
|
||||||
|
msgstr ""
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-03-01 14:58-0800\n"
|
"POT-Creation-Date: 2010-04-29 23:39+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -16,197 +16,80 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=CHARSET\n"
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: actions/groupsalmon.php:51
|
#: OStatusPlugin.php:210 OStatusPlugin.php:913 actions/ostatusinit.php:99
|
||||||
msgid "Can't accept remote posts for a remote group."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/groupsalmon.php:123
|
|
||||||
msgid "Can't read profile to set up group membership."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/groupsalmon.php:126 actions/groupsalmon.php:169
|
|
||||||
msgid "Groups can't join groups."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/groupsalmon.php:153
|
|
||||||
#, php-format
|
|
||||||
msgid "Could not join remote user %1$s to group %2$s."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/groupsalmon.php:166
|
|
||||||
msgid "Can't read profile to cancel group membership."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/groupsalmon.php:182
|
|
||||||
#, php-format
|
|
||||||
msgid "Could not remove remote user %1$s from group %2$s."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatusinit.php:40
|
|
||||||
msgid "You can use the local subscription!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatusinit.php:61
|
|
||||||
msgid "There was a problem with your session token. Try again, please."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatusinit.php:79 actions/ostatussub.php:439
|
|
||||||
msgid "Subscribe to user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatusinit.php:97
|
|
||||||
#, php-format
|
|
||||||
msgid "Subscribe to %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatusinit.php:102
|
|
||||||
msgid "User nickname"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatusinit.php:103
|
|
||||||
msgid "Nickname of the user you want to follow"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatusinit.php:106
|
|
||||||
msgid "Profile Account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatusinit.php:107
|
|
||||||
msgid "Your account id (i.e. user@identi.ca)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatusinit.php:110 actions/ostatussub.php:115
|
|
||||||
#: OStatusPlugin.php:205
|
|
||||||
msgid "Subscribe"
|
msgid "Subscribe"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/ostatusinit.php:128
|
#: OStatusPlugin.php:228 OStatusPlugin.php:635 actions/ostatussub.php:105
|
||||||
msgid "Must provide a remote profile."
|
#: actions/ostatusinit.php:96
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatusinit.php:138
|
|
||||||
msgid "Couldn't look up OStatus account profile."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatusinit.php:153
|
|
||||||
msgid "Couldn't confirm remote profile address."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatusinit.php:171
|
|
||||||
msgid "OStatus Connect"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatussub.php:68
|
|
||||||
msgid "Address or profile URL"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatussub.php:70
|
|
||||||
msgid "Enter the profile URL of a PubSubHubbub-enabled feed"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatussub.php:74
|
|
||||||
msgid "Continue"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatussub.php:112 OStatusPlugin.php:503
|
|
||||||
msgid "Join"
|
msgid "Join"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/ostatussub.php:113
|
#: OStatusPlugin.php:451
|
||||||
msgid "Join this group"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatussub.php:116
|
|
||||||
msgid "Subscribe to this user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatussub.php:137
|
|
||||||
msgid "You are already subscribed to this user."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatussub.php:165
|
|
||||||
msgid "You are already a member of this group."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatussub.php:286
|
|
||||||
msgid "Empty remote profile URL!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatussub.php:297
|
|
||||||
msgid "Invalid address format."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatussub.php:302
|
|
||||||
msgid "Invalid URL or could not reach server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatussub.php:304
|
|
||||||
msgid "Cannot read feed; server returned error."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatussub.php:306
|
|
||||||
msgid "Cannot read feed; server returned an empty page."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatussub.php:308
|
|
||||||
msgid "Bad HTML, could not find feed link."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatussub.php:310
|
|
||||||
msgid "Could not find a feed linked from this URL."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatussub.php:312
|
|
||||||
msgid "Not a recognized feed type."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/ostatussub.php:315
|
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Bad feed URL: %s %s"
|
msgid "Sent from %s via OStatus"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: OStatus remote group subscription dialog error.
|
#: OStatusPlugin.php:503
|
||||||
#: actions/ostatussub.php:336
|
msgid "Could not set up remote subscription."
|
||||||
msgid "Already a member!"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: OStatus remote group subscription dialog error.
|
#: OStatusPlugin.php:619
|
||||||
#: actions/ostatussub.php:346
|
msgid "Could not set up remote group membership."
|
||||||
msgid "Remote group join failed!"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: OStatus remote group subscription dialog error.
|
#: OStatusPlugin.php:636
|
||||||
#: actions/ostatussub.php:350
|
#, php-format
|
||||||
msgid "Remote group join aborted!"
|
msgid "%s has joined group %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: OStatus remote subscription dialog error.
|
#: OStatusPlugin.php:644
|
||||||
#: actions/ostatussub.php:356
|
msgid "Failed joining remote group."
|
||||||
msgid "Already subscribed!"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: OStatus remote subscription dialog error.
|
#: OStatusPlugin.php:684
|
||||||
#: actions/ostatussub.php:361
|
msgid "Leave"
|
||||||
msgid "Remote subscription failed!"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Page title for OStatus remote subscription form
|
#: OStatusPlugin.php:685
|
||||||
#: actions/ostatussub.php:459
|
#, php-format
|
||||||
msgid "Authorize subscription"
|
msgid "%s has left group %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/ostatussub.php:470
|
#: OStatusPlugin.php:844
|
||||||
|
msgid "Remote"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OStatusPlugin.php:883
|
||||||
|
msgid "Profile update"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OStatusPlugin.php:884
|
||||||
|
#, php-format
|
||||||
|
msgid "%s has updated their profile page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OStatusPlugin.php:928
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can subscribe to users from other supported sites. Paste their address "
|
"Follow people across social networks that implement <a href=\"http://ostatus."
|
||||||
"or profile URI below:"
|
"org/\">OStatus</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/Ostatus_profile.php:789
|
#: classes/Ostatus_profile.php:566
|
||||||
|
msgid "Show more"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: classes/Ostatus_profile.php:1004
|
||||||
|
#, php-format
|
||||||
|
msgid "Invalid avatar URL %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: classes/Ostatus_profile.php:1014
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Tried to update avatar for unsaved remote profile %s"
|
msgid "Tried to update avatar for unsaved remote profile %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/Ostatus_profile.php:797
|
#: classes/Ostatus_profile.php:1022
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Unable to fetch avatar from %s"
|
msgid "Unable to fetch avatar from %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -263,50 +146,186 @@ msgstr ""
|
|||||||
msgid "This target doesn't understand leave events."
|
msgid "This target doesn't understand leave events."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: OStatusPlugin.php:319
|
|
||||||
#, php-format
|
|
||||||
msgid "Sent from %s via OStatus"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: OStatusPlugin.php:371
|
|
||||||
msgid "Could not set up remote subscription."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: OStatusPlugin.php:487
|
|
||||||
msgid "Could not set up remote group membership."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: OStatusPlugin.php:504
|
|
||||||
#, php-format
|
|
||||||
msgid "%s has joined group %s."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: OStatusPlugin.php:512
|
|
||||||
msgid "Failed joining remote group."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: OStatusPlugin.php:553
|
|
||||||
msgid "Leave"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: OStatusPlugin.php:554
|
|
||||||
#, php-format
|
|
||||||
msgid "%s has left group %s."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: OStatusPlugin.php:685
|
|
||||||
msgid "Subscribe to remote user"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: OStatusPlugin.php:726
|
|
||||||
msgid "Profile update"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: OStatusPlugin.php:727
|
|
||||||
#, php-format
|
|
||||||
msgid "%s has updated their profile page."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tests/gettext-speedtest.php:57
|
#: tests/gettext-speedtest.php:57
|
||||||
msgid "Feeds"
|
msgid "Feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatusgroup.php:75
|
||||||
|
msgid "Join group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatusgroup.php:77
|
||||||
|
msgid "OStatus group's address, like http://example.net/group/nickname"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatusgroup.php:81 actions/ostatussub.php:71
|
||||||
|
msgid "Continue"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatusgroup.php:100
|
||||||
|
msgid "You are already a member of this group."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: OStatus remote group subscription dialog error.
|
||||||
|
#: actions/ostatusgroup.php:135
|
||||||
|
msgid "Already a member!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: OStatus remote group subscription dialog error.
|
||||||
|
#: actions/ostatusgroup.php:146
|
||||||
|
msgid "Remote group join failed!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: OStatus remote group subscription dialog error.
|
||||||
|
#: actions/ostatusgroup.php:150
|
||||||
|
msgid "Remote group join aborted!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Page title for OStatus remote group join form
|
||||||
|
#: actions/ostatusgroup.php:163
|
||||||
|
msgid "Confirm joining remote group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatusgroup.php:174
|
||||||
|
msgid ""
|
||||||
|
"You can subscribe to groups from other supported sites. Paste the group's "
|
||||||
|
"profile URI below:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/groupsalmon.php:51
|
||||||
|
msgid "Can't accept remote posts for a remote group."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/groupsalmon.php:124
|
||||||
|
msgid "Can't read profile to set up group membership."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/groupsalmon.php:127 actions/groupsalmon.php:170
|
||||||
|
msgid "Groups can't join groups."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/groupsalmon.php:154
|
||||||
|
#, php-format
|
||||||
|
msgid "Could not join remote user %1$s to group %2$s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/groupsalmon.php:167
|
||||||
|
msgid "Can't read profile to cancel group membership."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/groupsalmon.php:183
|
||||||
|
#, php-format
|
||||||
|
msgid "Could not remove remote user %1$s from group %2$s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatussub.php:65
|
||||||
|
msgid "Subscribe to"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatussub.php:67
|
||||||
|
msgid ""
|
||||||
|
"OStatus user's address, like nickname@example.com or http://example.net/"
|
||||||
|
"nickname"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatussub.php:106
|
||||||
|
msgid "Join this group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Page title for OStatus remote subscription form
|
||||||
|
#: actions/ostatussub.php:108 actions/ostatussub.php:400
|
||||||
|
msgid "Confirm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatussub.php:109
|
||||||
|
msgid "Subscribe to this user"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatussub.php:130
|
||||||
|
msgid "You are already subscribed to this user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatussub.php:247 actions/ostatussub.php:253
|
||||||
|
#: actions/ostatussub.php:272
|
||||||
|
msgid ""
|
||||||
|
"Sorry, we could not reach that address. Please make sure that the OStatus "
|
||||||
|
"address is like nickname@example.com or http://example.net/nickname"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatussub.php:256 actions/ostatussub.php:259
|
||||||
|
#: actions/ostatussub.php:262 actions/ostatussub.php:265
|
||||||
|
#: actions/ostatussub.php:268
|
||||||
|
msgid ""
|
||||||
|
"Sorry, we could not reach that feed. Please try that OStatus address again "
|
||||||
|
"later."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: OStatus remote subscription dialog error.
|
||||||
|
#: actions/ostatussub.php:301
|
||||||
|
msgid "Already subscribed!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: OStatus remote subscription dialog error.
|
||||||
|
#: actions/ostatussub.php:306
|
||||||
|
msgid "Remote subscription failed!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatussub.php:380 actions/ostatusinit.php:81
|
||||||
|
msgid "Subscribe to user"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatussub.php:411
|
||||||
|
msgid ""
|
||||||
|
"You can subscribe to users from other supported sites. Paste their address "
|
||||||
|
"or profile URI below:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatusinit.php:41
|
||||||
|
msgid "You can use the local subscription!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatusinit.php:63
|
||||||
|
msgid "There was a problem with your session token. Try again, please."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatusinit.php:95
|
||||||
|
#, php-format
|
||||||
|
msgid "Join group %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatusinit.php:98
|
||||||
|
#, php-format
|
||||||
|
msgid "Subscribe to %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatusinit.php:111
|
||||||
|
msgid "User nickname"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatusinit.php:112
|
||||||
|
msgid "Nickname of the user you want to follow"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatusinit.php:116
|
||||||
|
msgid "Profile Account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatusinit.php:117
|
||||||
|
msgid "Your account id (i.e. user@identi.ca)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatusinit.php:138
|
||||||
|
msgid "Must provide a remote profile."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatusinit.php:149
|
||||||
|
msgid "Couldn't look up OStatus account profile."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatusinit.php:161
|
||||||
|
msgid "Couldn't confirm remote profile address."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/ostatusinit.php:202
|
||||||
|
msgid "OStatus Connect"
|
||||||
|
msgstr ""
|
||||||
|
@ -1,109 +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: 2009-12-07 14:14-0800\n"
|
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
|
|
||||||
#: FeedSubPlugin.php:77
|
|
||||||
msgid "Feeds"
|
|
||||||
msgstr "Flux"
|
|
||||||
|
|
||||||
#: FeedSubPlugin.php:78
|
|
||||||
msgid "Feed subscription options"
|
|
||||||
msgstr "Préférences pour abonnement flux"
|
|
||||||
|
|
||||||
#: feedmunger.php:215
|
|
||||||
#, php-format
|
|
||||||
msgid "New post: \"%1$s\" %2$s"
|
|
||||||
msgstr "Nouveau: \"%1$s\" %2$s"
|
|
||||||
|
|
||||||
#: actions/feedsubsettings.php:41
|
|
||||||
msgid "Feed subscriptions"
|
|
||||||
msgstr "Abonnements aux fluxes"
|
|
||||||
|
|
||||||
#: actions/feedsubsettings.php:52
|
|
||||||
msgid ""
|
|
||||||
"You can subscribe to feeds from other sites; updates will appear in your "
|
|
||||||
"personal timeline."
|
|
||||||
msgstr ""
|
|
||||||
"Abonner aux fluxes RSS ou Atom des autres sites web; les temps se trouverair"
|
|
||||||
"en votre flux personnel."
|
|
||||||
|
|
||||||
#: actions/feedsubsettings.php:96
|
|
||||||
msgid "Subscribe"
|
|
||||||
msgstr "Abonner"
|
|
||||||
|
|
||||||
#: actions/feedsubsettings.php:98
|
|
||||||
msgid "Continue"
|
|
||||||
msgstr "Prochaine"
|
|
||||||
|
|
||||||
#: actions/feedsubsettings.php:151
|
|
||||||
msgid "Empty feed URL!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/feedsubsettings.php:161
|
|
||||||
msgid "Invalid URL or could not reach server."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/feedsubsettings.php:164
|
|
||||||
msgid "Cannot read feed; server returned error."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/feedsubsettings.php:167
|
|
||||||
msgid "Cannot read feed; server returned an empty page."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/feedsubsettings.php:170
|
|
||||||
msgid "Bad HTML, could not find feed link."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/feedsubsettings.php:173
|
|
||||||
msgid "Could not find a feed linked from this URL."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/feedsubsettings.php:176
|
|
||||||
msgid "Not a recognized feed type."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/feedsubsettings.php:180
|
|
||||||
msgid "Bad feed URL."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/feedsubsettings.php:188
|
|
||||||
msgid "Feed is not PuSH-enabled; cannot subscribe."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/feedsubsettings.php:208
|
|
||||||
msgid "Feed subscription failed! Bad response from hub."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/feedsubsettings.php:218
|
|
||||||
msgid "Already subscribed!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/feedsubsettings.php:220
|
|
||||||
msgid "Feed subscribed!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/feedsubsettings.php:222
|
|
||||||
msgid "Feed subscription failed!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/feedsubsettings.php:231
|
|
||||||
msgid "Previewing feed:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Confirm"
|
|
||||||
msgstr "Confirmer"
|
|
@ -0,0 +1,21 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: OpenExternalLinkTargetPlugin.php:60
|
||||||
|
msgid "Opens external links (i.e., with rel=external) on a new window or tab"
|
||||||
|
msgstr ""
|
@ -202,16 +202,16 @@ class OpenIDPlugin extends Plugin
|
|||||||
if ($this->openidOnly && !common_logged_in()) {
|
if ($this->openidOnly && !common_logged_in()) {
|
||||||
// TRANS: Tooltip for main menu option "Login"
|
// TRANS: Tooltip for main menu option "Login"
|
||||||
$tooltip = _m('TOOLTIP', 'Login to the site');
|
$tooltip = _m('TOOLTIP', 'Login to the site');
|
||||||
// TRANS: Main menu option when not logged in to log in
|
|
||||||
$action->menuItem(common_local_url('openidlogin'),
|
$action->menuItem(common_local_url('openidlogin'),
|
||||||
|
// TRANS: Main menu option when not logged in to log in
|
||||||
_m('MENU', 'Login'),
|
_m('MENU', 'Login'),
|
||||||
$tooltip,
|
$tooltip,
|
||||||
false,
|
false,
|
||||||
'nav_login');
|
'nav_login');
|
||||||
// TRANS: Tooltip for main menu option "Help"
|
// TRANS: Tooltip for main menu option "Help"
|
||||||
$tooltip = _m('TOOLTIP', 'Help me!');
|
$tooltip = _m('TOOLTIP', 'Help me!');
|
||||||
// TRANS: Main menu option for help on the StatusNet site
|
|
||||||
$action->menuItem(common_local_url('doc', array('title' => 'help')),
|
$action->menuItem(common_local_url('doc', array('title' => 'help')),
|
||||||
|
// TRANS: Main menu option for help on the StatusNet site
|
||||||
_m('MENU', 'Help'),
|
_m('MENU', 'Help'),
|
||||||
$tooltip,
|
$tooltip,
|
||||||
false,
|
false,
|
||||||
@ -219,8 +219,8 @@ class OpenIDPlugin extends Plugin
|
|||||||
if (!common_config('site', 'private')) {
|
if (!common_config('site', 'private')) {
|
||||||
// TRANS: Tooltip for main menu option "Search"
|
// TRANS: Tooltip for main menu option "Search"
|
||||||
$tooltip = _m('TOOLTIP', 'Search for people or text');
|
$tooltip = _m('TOOLTIP', 'Search for people or text');
|
||||||
// TRANS: Main menu option when logged in or when the StatusNet instance is not private
|
|
||||||
$action->menuItem(common_local_url('peoplesearch'),
|
$action->menuItem(common_local_url('peoplesearch'),
|
||||||
|
// TRANS: Main menu option when logged in or when the StatusNet instance is not private
|
||||||
_m('MENU', 'Search'), $tooltip, false, 'nav_search');
|
_m('MENU', 'Search'), $tooltip, false, 'nav_search');
|
||||||
}
|
}
|
||||||
Event::handle('EndPrimaryNav', array($action));
|
Event::handle('EndPrimaryNav', array($action));
|
||||||
@ -280,7 +280,9 @@ class OpenIDPlugin extends Plugin
|
|||||||
$action_name = $action->trimmed('action');
|
$action_name = $action->trimmed('action');
|
||||||
|
|
||||||
$action->menuItem(common_local_url('openidlogin'),
|
$action->menuItem(common_local_url('openidlogin'),
|
||||||
_m('OpenID'),
|
// TRANS: OpenID plugin menu item on site logon page.
|
||||||
|
_m('MENU', 'OpenID'),
|
||||||
|
// TRANS: OpenID plugin tooltip for logon menu item.
|
||||||
_m('Login or register with OpenID'),
|
_m('Login or register with OpenID'),
|
||||||
$action_name === 'openidlogin');
|
$action_name === 'openidlogin');
|
||||||
}
|
}
|
||||||
@ -316,7 +318,9 @@ class OpenIDPlugin extends Plugin
|
|||||||
$action_name = $action->trimmed('action');
|
$action_name = $action->trimmed('action');
|
||||||
|
|
||||||
$action->menuItem(common_local_url('openidsettings'),
|
$action->menuItem(common_local_url('openidsettings'),
|
||||||
_m('OpenID'),
|
// TRANS: OpenID plugin menu item on user settings page.
|
||||||
|
_m('MENU', 'OpenID'),
|
||||||
|
// TRANS: OpenID plugin tooltip for user settings menu item.
|
||||||
_m('Add or remove OpenIDs'),
|
_m('Add or remove OpenIDs'),
|
||||||
$action_name === 'openidsettings');
|
$action_name === 'openidsettings');
|
||||||
|
|
||||||
@ -592,6 +596,7 @@ class OpenIDPlugin extends Plugin
|
|||||||
'author' => 'Evan Prodromou, Craig Andrews',
|
'author' => 'Evan Prodromou, Craig Andrews',
|
||||||
'homepage' => 'http://status.net/wiki/Plugin:OpenID',
|
'homepage' => 'http://status.net/wiki/Plugin:OpenID',
|
||||||
'rawdescription' =>
|
'rawdescription' =>
|
||||||
|
// TRANS: OpenID plugin description.
|
||||||
_m('Use <a href="http://openid.net/">OpenID</a> to login to the site.'));
|
_m('Use <a href="http://openid.net/">OpenID</a> to login to the site.'));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -64,6 +64,7 @@ class FinishaddopenidAction extends Action
|
|||||||
{
|
{
|
||||||
parent::handle($args);
|
parent::handle($args);
|
||||||
if (!common_logged_in()) {
|
if (!common_logged_in()) {
|
||||||
|
// TRANS: Client error message
|
||||||
$this->clientError(_m('Not logged in.'));
|
$this->clientError(_m('Not logged in.'));
|
||||||
} else {
|
} else {
|
||||||
$this->tryLogin();
|
$this->tryLogin();
|
||||||
@ -85,10 +86,12 @@ class FinishaddopenidAction extends Action
|
|||||||
$response = $consumer->complete(common_local_url('finishaddopenid'));
|
$response = $consumer->complete(common_local_url('finishaddopenid'));
|
||||||
|
|
||||||
if ($response->status == Auth_OpenID_CANCEL) {
|
if ($response->status == Auth_OpenID_CANCEL) {
|
||||||
|
// TRANS: Status message in case the response from the OpenID provider is that the logon attempt was cancelled.
|
||||||
$this->message(_m('OpenID authentication cancelled.'));
|
$this->message(_m('OpenID authentication cancelled.'));
|
||||||
return;
|
return;
|
||||||
} else if ($response->status == Auth_OpenID_FAILURE) {
|
} else if ($response->status == Auth_OpenID_FAILURE) {
|
||||||
// Authentication failed; display the error message.
|
// TRANS: OpenID authentication failed; display the error message.
|
||||||
|
// TRANS: %s is the error message.
|
||||||
$this->message(sprintf(_m('OpenID authentication failed: %s'),
|
$this->message(sprintf(_m('OpenID authentication failed: %s'),
|
||||||
$response->message));
|
$response->message));
|
||||||
} else if ($response->status == Auth_OpenID_SUCCESS) {
|
} else if ($response->status == Auth_OpenID_SUCCESS) {
|
||||||
@ -109,8 +112,10 @@ class FinishaddopenidAction extends Action
|
|||||||
|
|
||||||
if ($other) {
|
if ($other) {
|
||||||
if ($other->id == $cur->id) {
|
if ($other->id == $cur->id) {
|
||||||
|
// TRANS: message in case a user tries to add an OpenID that is already connected to them.
|
||||||
$this->message(_m('You already have this OpenID!'));
|
$this->message(_m('You already have this OpenID!'));
|
||||||
} else {
|
} else {
|
||||||
|
// TRANS: message in case a user tries to add an OpenID that is already used by another user.
|
||||||
$this->message(_m('Someone else already has this OpenID.'));
|
$this->message(_m('Someone else already has this OpenID.'));
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
@ -123,11 +128,13 @@ class FinishaddopenidAction extends Action
|
|||||||
$result = oid_link_user($cur->id, $canonical, $display);
|
$result = oid_link_user($cur->id, $canonical, $display);
|
||||||
|
|
||||||
if (!$result) {
|
if (!$result) {
|
||||||
|
// TRANS: message in case the OpenID object cannot be connected to the user.
|
||||||
$this->message(_m('Error connecting user.'));
|
$this->message(_m('Error connecting user.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if ($sreg) {
|
if ($sreg) {
|
||||||
if (!oid_update_user($cur, $sreg)) {
|
if (!oid_update_user($cur, $sreg)) {
|
||||||
|
// TRANS: message in case the user or the user profile cannot be saved in StatusNet.
|
||||||
$this->message(_m('Error updating profile'));
|
$this->message(_m('Error updating profile'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -167,6 +174,7 @@ class FinishaddopenidAction extends Action
|
|||||||
|
|
||||||
function title()
|
function title()
|
||||||
{
|
{
|
||||||
|
// TRANS: Title after getting the status of the OpenID authorisation request.
|
||||||
return _m('OpenID Login');
|
return _m('OpenID Login');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -31,15 +31,18 @@ class FinishopenidloginAction extends Action
|
|||||||
{
|
{
|
||||||
parent::handle($args);
|
parent::handle($args);
|
||||||
if (common_is_real_login()) {
|
if (common_is_real_login()) {
|
||||||
|
// TRANS: Client error message trying to log on with OpenID while already logged on.
|
||||||
$this->clientError(_m('Already logged in.'));
|
$this->clientError(_m('Already logged in.'));
|
||||||
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
||||||
$token = $this->trimmed('token');
|
$token = $this->trimmed('token');
|
||||||
if (!$token || $token != common_session_token()) {
|
if (!$token || $token != common_session_token()) {
|
||||||
|
// TRANS: Message given when there is a problem with the user's session token.
|
||||||
$this->showForm(_m('There was a problem with your session token. Try again, please.'));
|
$this->showForm(_m('There was a problem with your session token. Try again, please.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if ($this->arg('create')) {
|
if ($this->arg('create')) {
|
||||||
if (!$this->boolean('license')) {
|
if (!$this->boolean('license')) {
|
||||||
|
// TRANS: Message given if user does not agree with the site's license.
|
||||||
$this->showForm(_m('You can\'t register if you don\'t agree to the license.'),
|
$this->showForm(_m('You can\'t register if you don\'t agree to the license.'),
|
||||||
$this->trimmed('newname'));
|
$this->trimmed('newname'));
|
||||||
return;
|
return;
|
||||||
@ -48,7 +51,8 @@ class FinishopenidloginAction extends Action
|
|||||||
} else if ($this->arg('connect')) {
|
} else if ($this->arg('connect')) {
|
||||||
$this->connectUser();
|
$this->connectUser();
|
||||||
} else {
|
} else {
|
||||||
$this->showForm(_m('Something weird happened.'),
|
// TRANS: Messag given on an unknown error.
|
||||||
|
$this->showForm(_m('An unknown error has occured.'),
|
||||||
$this->trimmed('newname'));
|
$this->trimmed('newname'));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -62,12 +66,15 @@ class FinishopenidloginAction extends Action
|
|||||||
$this->element('div', array('class' => 'error'), $this->error);
|
$this->element('div', array('class' => 'error'), $this->error);
|
||||||
} else {
|
} else {
|
||||||
$this->element('div', 'instructions',
|
$this->element('div', 'instructions',
|
||||||
|
// TRANS: Instructions given after a first successful logon using OpenID.
|
||||||
|
// TRANS: %s is the site name.
|
||||||
sprintf(_m('This is the first time you\'ve logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one.'), common_config('site', 'name')));
|
sprintf(_m('This is the first time you\'ve logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one.'), common_config('site', 'name')));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function title()
|
function title()
|
||||||
{
|
{
|
||||||
|
// TRANS: Title
|
||||||
return _m('OpenID Account Setup');
|
return _m('OpenID Account Setup');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -115,6 +122,8 @@ class FinishopenidloginAction extends Action
|
|||||||
'value' => 'true'));
|
'value' => 'true'));
|
||||||
$this->elementStart('label', array('for' => 'license',
|
$this->elementStart('label', array('for' => 'license',
|
||||||
'class' => 'checkbox'));
|
'class' => 'checkbox'));
|
||||||
|
// TRANS: OpenID plugin link text.
|
||||||
|
// TRANS: %s is a link to a licese with the license name as link text.
|
||||||
$message = _('My text and files are available under %s ' .
|
$message = _('My text and files are available under %s ' .
|
||||||
'except this private data: password, ' .
|
'except this private data: password, ' .
|
||||||
'email address, IM address, and phone number.');
|
'email address, IM address, and phone number.');
|
||||||
@ -127,23 +136,29 @@ class FinishopenidloginAction extends Action
|
|||||||
$this->elementEnd('label');
|
$this->elementEnd('label');
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
$this->elementEnd('ul');
|
$this->elementEnd('ul');
|
||||||
$this->submit('create', _m('Create'));
|
// TRANS: Button label in form in which to create a new user on the site for an OpenID.
|
||||||
|
$this->submit('create', _m('BUTTON', 'Create'));
|
||||||
$this->elementEnd('fieldset');
|
$this->elementEnd('fieldset');
|
||||||
|
|
||||||
$this->elementStart('fieldset', array('id' => 'form_openid_createaccount'));
|
$this->elementStart('fieldset', array('id' => 'form_openid_createaccount'));
|
||||||
$this->element('legend', null,
|
$this->element('legend', null,
|
||||||
|
// TRANS: Used as form legend for form in which to connect an OpenID to an existing user on the site.
|
||||||
_m('Connect existing account'));
|
_m('Connect existing account'));
|
||||||
$this->element('p', null,
|
$this->element('p', null,
|
||||||
|
// TRANS: User instructions for form in which to connect an OpenID to an existing user on the site.
|
||||||
_m('If you already have an account, login with your username and password to connect it to your OpenID.'));
|
_m('If you already have an account, login with your username and password to connect it to your OpenID.'));
|
||||||
$this->elementStart('ul', 'form_data');
|
$this->elementStart('ul', 'form_data');
|
||||||
$this->elementStart('li');
|
$this->elementStart('li');
|
||||||
|
// TRANS: Field label in form in which to connect an OpenID to an existing user on the site.
|
||||||
$this->input('nickname', _m('Existing nickname'));
|
$this->input('nickname', _m('Existing nickname'));
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
$this->elementStart('li');
|
$this->elementStart('li');
|
||||||
|
// TRANS: Field label in form in which to connect an OpenID to an existing user on the site.
|
||||||
$this->password('password', _m('Password'));
|
$this->password('password', _m('Password'));
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
$this->elementEnd('ul');
|
$this->elementEnd('ul');
|
||||||
$this->submit('connect', _m('Connect'));
|
// TRANS: Button label in form in which to connect an OpenID to an existing user on the site.
|
||||||
|
$this->submit('connect', _m('BUTTON', 'Connect'));
|
||||||
$this->elementEnd('fieldset');
|
$this->elementEnd('fieldset');
|
||||||
$this->elementEnd('form');
|
$this->elementEnd('form');
|
||||||
}
|
}
|
||||||
@ -155,10 +170,11 @@ class FinishopenidloginAction extends Action
|
|||||||
$response = $consumer->complete(common_local_url('finishopenidlogin'));
|
$response = $consumer->complete(common_local_url('finishopenidlogin'));
|
||||||
|
|
||||||
if ($response->status == Auth_OpenID_CANCEL) {
|
if ($response->status == Auth_OpenID_CANCEL) {
|
||||||
|
// TRANS: Status message in case the response from the OpenID provider is that the logon attempt was cancelled.
|
||||||
$this->message(_m('OpenID authentication cancelled.'));
|
$this->message(_m('OpenID authentication cancelled.'));
|
||||||
return;
|
return;
|
||||||
} else if ($response->status == Auth_OpenID_FAILURE) {
|
} else if ($response->status == Auth_OpenID_FAILURE) {
|
||||||
// Authentication failed; display the error message.
|
// TRANS: OpenID authentication failed; display the error message. %s is the error message.
|
||||||
$this->message(sprintf(_m('OpenID authentication failed: %s'), $response->message));
|
$this->message(sprintf(_m('OpenID authentication failed: %s'), $response->message));
|
||||||
} else if ($response->status == Auth_OpenID_SUCCESS) {
|
} else if ($response->status == Auth_OpenID_SUCCESS) {
|
||||||
// This means the authentication succeeded; extract the
|
// This means the authentication succeeded; extract the
|
||||||
@ -224,6 +240,7 @@ class FinishopenidloginAction extends Action
|
|||||||
# FIXME: save invite code before redirect, and check here
|
# FIXME: save invite code before redirect, and check here
|
||||||
|
|
||||||
if (common_config('site', 'closed')) {
|
if (common_config('site', 'closed')) {
|
||||||
|
// TRANS: OpenID plugin message. No new user registration is allowed on the site.
|
||||||
$this->clientError(_m('Registration not allowed.'));
|
$this->clientError(_m('Registration not allowed.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -233,6 +250,7 @@ class FinishopenidloginAction extends Action
|
|||||||
if (common_config('site', 'inviteonly')) {
|
if (common_config('site', 'inviteonly')) {
|
||||||
$code = $_SESSION['invitecode'];
|
$code = $_SESSION['invitecode'];
|
||||||
if (empty($code)) {
|
if (empty($code)) {
|
||||||
|
// TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided.
|
||||||
$this->clientError(_m('Registration not allowed.'));
|
$this->clientError(_m('Registration not allowed.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -240,6 +258,7 @@ class FinishopenidloginAction extends Action
|
|||||||
$invite = Invitation::staticGet($code);
|
$invite = Invitation::staticGet($code);
|
||||||
|
|
||||||
if (empty($invite)) {
|
if (empty($invite)) {
|
||||||
|
// TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid.
|
||||||
$this->clientError(_m('Not a valid invitation code.'));
|
$this->clientError(_m('Not a valid invitation code.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -250,16 +269,19 @@ class FinishopenidloginAction extends Action
|
|||||||
if (!Validate::string($nickname, array('min_length' => 1,
|
if (!Validate::string($nickname, array('min_length' => 1,
|
||||||
'max_length' => 64,
|
'max_length' => 64,
|
||||||
'format' => NICKNAME_FMT))) {
|
'format' => NICKNAME_FMT))) {
|
||||||
|
// TRANS: OpenID plugin message. The entered new user name did not conform to the requirements.
|
||||||
$this->showForm(_m('Nickname must have only lowercase letters and numbers and no spaces.'));
|
$this->showForm(_m('Nickname must have only lowercase letters and numbers and no spaces.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!User::allowed_nickname($nickname)) {
|
if (!User::allowed_nickname($nickname)) {
|
||||||
|
// TRANS: OpenID plugin message. The entered new user name is blacklisted.
|
||||||
$this->showForm(_m('Nickname not allowed.'));
|
$this->showForm(_m('Nickname not allowed.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (User::staticGet('nickname', $nickname)) {
|
if (User::staticGet('nickname', $nickname)) {
|
||||||
|
// TRANS: OpenID plugin message. The entered new user name is already used.
|
||||||
$this->showForm(_m('Nickname already in use. Try another one.'));
|
$this->showForm(_m('Nickname already in use. Try another one.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -267,6 +289,7 @@ class FinishopenidloginAction extends Action
|
|||||||
list($display, $canonical, $sreg) = $this->getSavedValues();
|
list($display, $canonical, $sreg) = $this->getSavedValues();
|
||||||
|
|
||||||
if (!$display || !$canonical) {
|
if (!$display || !$canonical) {
|
||||||
|
// TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved.
|
||||||
$this->serverError(_m('Stored OpenID not found.'));
|
$this->serverError(_m('Stored OpenID not found.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -276,6 +299,7 @@ class FinishopenidloginAction extends Action
|
|||||||
$other = oid_get_user($canonical);
|
$other = oid_get_user($canonical);
|
||||||
|
|
||||||
if ($other) {
|
if ($other) {
|
||||||
|
// TRANS: OpenID plugin server error.
|
||||||
$this->serverError(_m('Creating new account for OpenID that already has a user.'));
|
$this->serverError(_m('Creating new account for OpenID that already has a user.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -336,6 +360,7 @@ class FinishopenidloginAction extends Action
|
|||||||
$password = $this->trimmed('password');
|
$password = $this->trimmed('password');
|
||||||
|
|
||||||
if (!common_check_user($nickname, $password)) {
|
if (!common_check_user($nickname, $password)) {
|
||||||
|
// TRANS: OpenID plugin message.
|
||||||
$this->showForm(_m('Invalid username or password.'));
|
$this->showForm(_m('Invalid username or password.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -347,6 +372,7 @@ class FinishopenidloginAction extends Action
|
|||||||
list($display, $canonical, $sreg) = $this->getSavedValues();
|
list($display, $canonical, $sreg) = $this->getSavedValues();
|
||||||
|
|
||||||
if (!$display || !$canonical) {
|
if (!$display || !$canonical) {
|
||||||
|
// TRANS: OpenID plugin server error. A stored OpenID cannot be found.
|
||||||
$this->serverError(_m('Stored OpenID not found.'));
|
$this->serverError(_m('Stored OpenID not found.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -354,6 +380,7 @@ class FinishopenidloginAction extends Action
|
|||||||
$result = oid_link_user($user->id, $canonical, $display);
|
$result = oid_link_user($user->id, $canonical, $display);
|
||||||
|
|
||||||
if (!$result) {
|
if (!$result) {
|
||||||
|
// TRANS: OpenID plugin server error. The user or user profile could not be saved.
|
||||||
$this->serverError(_m('Error connecting user to OpenID.'));
|
$this->serverError(_m('Error connecting user to OpenID.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-03-01 14:58-0800\n"
|
"POT-Creation-Date: 2010-04-29 23:39+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -16,256 +16,6 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=CHARSET\n"
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: finishaddopenid.php:67
|
|
||||||
msgid "Not logged in."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishaddopenid.php:88 finishopenidlogin.php:149
|
|
||||||
msgid "OpenID authentication cancelled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishaddopenid.php:92 finishopenidlogin.php:153
|
|
||||||
#, php-format
|
|
||||||
msgid "OpenID authentication failed: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishaddopenid.php:112
|
|
||||||
msgid "You already have this OpenID!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishaddopenid.php:114
|
|
||||||
msgid "Someone else already has this OpenID."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishaddopenid.php:126
|
|
||||||
msgid "Error connecting user."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishaddopenid.php:131
|
|
||||||
msgid "Error updating profile"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishaddopenid.php:170 openidlogin.php:95
|
|
||||||
msgid "OpenID Login"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:34 openidlogin.php:30
|
|
||||||
msgid "Already logged in."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:38 openidlogin.php:37 openidsettings.php:194
|
|
||||||
msgid "There was a problem with your session token. Try again, please."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:43
|
|
||||||
msgid "You can't register if you don't agree to the license."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:52 openidsettings.php:208
|
|
||||||
msgid "Something weird happened."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:66
|
|
||||||
#, php-format
|
|
||||||
msgid ""
|
|
||||||
"This is the first time you've logged into %s so we must connect your OpenID "
|
|
||||||
"to a local account. You can either create a new account, or connect with "
|
|
||||||
"your existing account, if you have one."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:72
|
|
||||||
msgid "OpenID Account Setup"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:97
|
|
||||||
msgid "Create new account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:99
|
|
||||||
msgid "Create a new user with this nickname."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:102
|
|
||||||
msgid "New nickname"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:104
|
|
||||||
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:114
|
|
||||||
msgid "My text and files are available under "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:117
|
|
||||||
msgid ""
|
|
||||||
" except this private data: password, email address, IM address, phone number."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:121
|
|
||||||
msgid "Create"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:126
|
|
||||||
msgid "Connect existing account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:128
|
|
||||||
msgid ""
|
|
||||||
"If you already have an account, login with your username and password to "
|
|
||||||
"connect it to your OpenID."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:131
|
|
||||||
msgid "Existing nickname"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:134
|
|
||||||
msgid "Password"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:137
|
|
||||||
msgid "Connect"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:215 finishopenidlogin.php:224
|
|
||||||
msgid "Registration not allowed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:231
|
|
||||||
msgid "Not a valid invitation code."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:241
|
|
||||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:246
|
|
||||||
msgid "Nickname not allowed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:251
|
|
||||||
msgid "Nickname already in use. Try another one."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:258 finishopenidlogin.php:338
|
|
||||||
msgid "Stored OpenID not found."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:267
|
|
||||||
msgid "Creating new account for OpenID that already has a user."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:327
|
|
||||||
msgid "Invalid username or password."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:345
|
|
||||||
msgid "Error connecting user to OpenID."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: openid.php:141
|
|
||||||
msgid "Cannot instantiate OpenID consumer object."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: openid.php:151
|
|
||||||
msgid "Not a valid OpenID."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: openid.php:153
|
|
||||||
#, php-format
|
|
||||||
msgid "OpenID failure: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: openid.php:180
|
|
||||||
#, php-format
|
|
||||||
msgid "Could not redirect to server: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: openid.php:198
|
|
||||||
#, php-format
|
|
||||||
msgid "Could not create OpenID form: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: openid.php:214
|
|
||||||
msgid ""
|
|
||||||
"This form should automatically submit itself. If not, click the submit "
|
|
||||||
"button to go to your OpenID provider."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: openid.php:246
|
|
||||||
msgid "Error saving the profile."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: openid.php:257
|
|
||||||
msgid "Error saving the user."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: openid.php:277
|
|
||||||
msgid "OpenID Auto-Submit"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: openidlogin.php:66
|
|
||||||
#, php-format
|
|
||||||
msgid ""
|
|
||||||
"For security reasons, please re-login with your [OpenID](%%doc.openid%%) "
|
|
||||||
"before changing your settings."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: openidlogin.php:70
|
|
||||||
#, php-format
|
|
||||||
msgid "Login with an [OpenID](%%doc.openid%%) account."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: openidlogin.php:112
|
|
||||||
msgid "OpenID login"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: openidlogin.php:117 openidsettings.php:107
|
|
||||||
msgid "OpenID URL"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: openidlogin.php:119
|
|
||||||
msgid "Your OpenID URL"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: openidlogin.php:122
|
|
||||||
msgid "Remember me"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: openidlogin.php:123
|
|
||||||
msgid "Automatically login in the future; not for shared computers!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: openidlogin.php:127
|
|
||||||
msgid "Login"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: OpenIDPlugin.php:123 OpenIDPlugin.php:135
|
|
||||||
msgid "OpenID"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: OpenIDPlugin.php:124
|
|
||||||
msgid "Login or register with OpenID"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: OpenIDPlugin.php:136
|
|
||||||
msgid "Add or remove OpenIDs"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: OpenIDPlugin.php:324
|
|
||||||
msgid "Use <a href=\"http://openid.net/\">OpenID</a> to login to the site."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: openidserver.php:106
|
|
||||||
#, php-format
|
|
||||||
msgid "You are not authorized to use the identity %s."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: openidserver.php:126
|
|
||||||
msgid "Just an OpenID provider. Nothing to see here, move along..."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: openidsettings.php:59
|
#: openidsettings.php:59
|
||||||
msgid "OpenID settings"
|
msgid "OpenID settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -287,6 +37,10 @@ msgid ""
|
|||||||
"click \"Add\"."
|
"click \"Add\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: openidsettings.php:107 openidlogin.php:119
|
||||||
|
msgid "OpenID URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: openidsettings.php:117
|
#: openidsettings.php:117
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -307,22 +61,304 @@ msgid ""
|
|||||||
"\"Remove\"."
|
"\"Remove\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: openidsettings.php:172
|
#: openidsettings.php:172 openidsettings.php:213
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: openidsettings.php:228
|
#: openidsettings.php:186
|
||||||
|
msgid "OpenID Trusted Sites"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openidsettings.php:189
|
||||||
|
msgid ""
|
||||||
|
"The following sites are allowed to access your identity and log you in. You "
|
||||||
|
"can remove a site from this list to deny it access to your OpenID."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openidsettings.php:231 finishopenidlogin.php:38 openidlogin.php:39
|
||||||
|
msgid "There was a problem with your session token. Try again, please."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openidsettings.php:247 finishopenidlogin.php:51
|
||||||
|
msgid "Something weird happened."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openidsettings.php:271
|
||||||
|
msgid "No such OpenID trustroot."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openidsettings.php:275
|
||||||
|
msgid "Trustroots removed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openidsettings.php:298
|
||||||
msgid "No such OpenID."
|
msgid "No such OpenID."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: openidsettings.php:233
|
#: openidsettings.php:303
|
||||||
msgid "That OpenID does not belong to you."
|
msgid "That OpenID does not belong to you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: openidsettings.php:237
|
#: openidsettings.php:307
|
||||||
msgid "OpenID removed."
|
msgid "OpenID removed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: openid.php:137
|
||||||
|
msgid "Cannot instantiate OpenID consumer object."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openid.php:147
|
||||||
|
msgid "Not a valid OpenID."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openid.php:149
|
||||||
|
#, php-format
|
||||||
|
msgid "OpenID failure: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openid.php:176
|
||||||
|
#, php-format
|
||||||
|
msgid "Could not redirect to server: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openid.php:194
|
||||||
|
#, php-format
|
||||||
|
msgid "Could not create OpenID form: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openid.php:210
|
||||||
|
msgid ""
|
||||||
|
"This form should automatically submit itself. If not, click the submit "
|
||||||
|
"button to go to your OpenID provider."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openid.php:242
|
||||||
|
msgid "Error saving the profile."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openid.php:253
|
||||||
|
msgid "Error saving the user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openid.php:282
|
||||||
|
msgid "Unauthorized URL used for OpenID login."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openid.php:302
|
||||||
|
msgid "OpenID Login Submission"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openid.php:312
|
||||||
|
msgid "Requesting authorization from your login provider..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openid.php:315
|
||||||
|
msgid ""
|
||||||
|
"If you are not redirected to your login provider in a few seconds, try "
|
||||||
|
"pushing the button below."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Tooltip for main menu option "Login"
|
||||||
|
#: OpenIDPlugin.php:204
|
||||||
|
msgctxt "TOOLTIP"
|
||||||
|
msgid "Login to the site"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OpenIDPlugin.php:207
|
||||||
|
msgctxt "MENU"
|
||||||
|
msgid "Login"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Tooltip for main menu option "Help"
|
||||||
|
#: OpenIDPlugin.php:212
|
||||||
|
msgctxt "TOOLTIP"
|
||||||
|
msgid "Help me!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OpenIDPlugin.php:215
|
||||||
|
msgctxt "MENU"
|
||||||
|
msgid "Help"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Tooltip for main menu option "Search"
|
||||||
|
#: OpenIDPlugin.php:221
|
||||||
|
msgctxt "TOOLTIP"
|
||||||
|
msgid "Search for people or text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OpenIDPlugin.php:224
|
||||||
|
msgctxt "MENU"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OpenIDPlugin.php:283 OpenIDPlugin.php:319
|
||||||
|
msgid "OpenID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OpenIDPlugin.php:284
|
||||||
|
msgid "Login or register with OpenID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OpenIDPlugin.php:320
|
||||||
|
msgid "Add or remove OpenIDs"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OpenIDPlugin.php:595
|
||||||
|
msgid "Use <a href=\"http://openid.net/\">OpenID</a> to login to the site."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openidserver.php:106
|
||||||
|
#, php-format
|
||||||
|
msgid "You are not authorized to use the identity %s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openidserver.php:126
|
||||||
|
msgid "Just an OpenID provider. Nothing to see here, move along..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:34 openidlogin.php:30
|
||||||
|
msgid "Already logged in."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:43
|
||||||
|
msgid "You can't register if you don't agree to the license."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:65
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"This is the first time you've logged into %s so we must connect your OpenID "
|
||||||
|
"to a local account. You can either create a new account, or connect with "
|
||||||
|
"your existing account, if you have one."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:71
|
||||||
|
msgid "OpenID Account Setup"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:101
|
||||||
|
msgid "Create new account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:103
|
||||||
|
msgid "Create a new user with this nickname."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:106
|
||||||
|
msgid "New nickname"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:108
|
||||||
|
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:130
|
||||||
|
msgid "Create"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:135
|
||||||
|
msgid "Connect existing account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:137
|
||||||
|
msgid ""
|
||||||
|
"If you already have an account, login with your username and password to "
|
||||||
|
"connect it to your OpenID."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:140
|
||||||
|
msgid "Existing nickname"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:143
|
||||||
|
msgid "Password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:146
|
||||||
|
msgid "Connect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:158 finishaddopenid.php:88
|
||||||
|
msgid "OpenID authentication cancelled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:162 finishaddopenid.php:92
|
||||||
|
#, php-format
|
||||||
|
msgid "OpenID authentication failed: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:227 finishopenidlogin.php:236
|
||||||
|
msgid "Registration not allowed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:243
|
||||||
|
msgid "Not a valid invitation code."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:253
|
||||||
|
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:258
|
||||||
|
msgid "Nickname not allowed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:263
|
||||||
|
msgid "Nickname already in use. Try another one."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:270 finishopenidlogin.php:350
|
||||||
|
msgid "Stored OpenID not found."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:279
|
||||||
|
msgid "Creating new account for OpenID that already has a user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:339
|
||||||
|
msgid "Invalid username or password."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:357
|
||||||
|
msgid "Error connecting user to OpenID."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openidlogin.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"For security reasons, please re-login with your [OpenID](%%doc.openid%%) "
|
||||||
|
"before changing your settings."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openidlogin.php:72
|
||||||
|
#, php-format
|
||||||
|
msgid "Login with an [OpenID](%%doc.openid%%) account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openidlogin.php:97 finishaddopenid.php:170
|
||||||
|
msgid "OpenID Login"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openidlogin.php:114
|
||||||
|
msgid "OpenID login"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openidlogin.php:121
|
||||||
|
msgid "Your OpenID URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openidlogin.php:124
|
||||||
|
msgid "Remember me"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openidlogin.php:125
|
||||||
|
msgid "Automatically login in the future; not for shared computers!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: openidlogin.php:129
|
||||||
|
msgid "Login"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: openidtrust.php:51
|
#: openidtrust.php:51
|
||||||
msgid "OpenID Identity Verification"
|
msgid "OpenID Identity Verification"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -332,17 +368,37 @@ msgid ""
|
|||||||
"This page should only be reached during OpenID processing, not directly."
|
"This page should only be reached during OpenID processing, not directly."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: openidtrust.php:118
|
#: openidtrust.php:117
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"%s has asked to verify your identity. Click Continue to verify your "
|
"%s has asked to verify your identity. Click Continue to verify your "
|
||||||
"identity and login without creating a new password."
|
"identity and login without creating a new password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: openidtrust.php:136
|
#: openidtrust.php:135
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: openidtrust.php:137
|
#: openidtrust.php:136
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishaddopenid.php:67
|
||||||
|
msgid "Not logged in."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishaddopenid.php:112
|
||||||
|
msgid "You already have this OpenID!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishaddopenid.php:114
|
||||||
|
msgid "Someone else already has this OpenID."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishaddopenid.php:126
|
||||||
|
msgid "Error connecting user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: finishaddopenid.php:131
|
||||||
|
msgid "Error updating profile"
|
||||||
|
msgstr ""
|
||||||
|
@ -8,265 +8,14 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-04-11 21:42+0000\n"
|
"POT-Creation-Date: 2010-04-29 23:39+0000\n"
|
||||||
"PO-Revision-Date: 2010-04-12 00:53+0100\n"
|
"PO-Revision-Date: 2010-04-30 02:16+0100\n"
|
||||||
|
"Last-Translator: Siebrand Mazeland <s.mazeland@xs4all.nl>\n"
|
||||||
"Language-Team: Dutch\n"
|
"Language-Team: Dutch\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"Last-Translator: Siebrand Mazeland <s.mazeland@xs4all.nl>\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
|
|
||||||
#: finishaddopenid.php:67
|
|
||||||
msgid "Not logged in."
|
|
||||||
msgstr "Niet aangemeld."
|
|
||||||
|
|
||||||
#: finishaddopenid.php:88
|
|
||||||
#: finishopenidlogin.php:149
|
|
||||||
msgid "OpenID authentication cancelled."
|
|
||||||
msgstr "De authenticatie via OpenID is afgebroken."
|
|
||||||
|
|
||||||
#: finishaddopenid.php:92
|
|
||||||
#: finishopenidlogin.php:153
|
|
||||||
#, php-format
|
|
||||||
msgid "OpenID authentication failed: %s"
|
|
||||||
msgstr "De authenticatie via OpenID is mislukt: %s"
|
|
||||||
|
|
||||||
#: finishaddopenid.php:112
|
|
||||||
msgid "You already have this OpenID!"
|
|
||||||
msgstr "U hebt deze OpenID al!"
|
|
||||||
|
|
||||||
#: finishaddopenid.php:114
|
|
||||||
msgid "Someone else already has this OpenID."
|
|
||||||
msgstr "Iemand anders gebruikt deze OpenID al."
|
|
||||||
|
|
||||||
#: finishaddopenid.php:126
|
|
||||||
msgid "Error connecting user."
|
|
||||||
msgstr "Fout bij het verbinden met de gebruiker."
|
|
||||||
|
|
||||||
#: finishaddopenid.php:131
|
|
||||||
msgid "Error updating profile"
|
|
||||||
msgstr "Fout bij het bijwerken van het profiel."
|
|
||||||
|
|
||||||
#: finishaddopenid.php:170
|
|
||||||
#: openidlogin.php:95
|
|
||||||
msgid "OpenID Login"
|
|
||||||
msgstr "Aanmelden via OpenID"
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:34
|
|
||||||
#: openidlogin.php:30
|
|
||||||
msgid "Already logged in."
|
|
||||||
msgstr "U bent al aangemeld."
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:38
|
|
||||||
#: openidlogin.php:37
|
|
||||||
#: openidsettings.php:194
|
|
||||||
msgid "There was a problem with your session token. Try again, please."
|
|
||||||
msgstr "Er was een probleem met uw sessietoken. Probeer het opnieuw."
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:43
|
|
||||||
msgid "You can't register if you don't agree to the license."
|
|
||||||
msgstr "U kunt niet registreren als u niet akkoord gaat met de licentie."
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:52
|
|
||||||
#: openidsettings.php:208
|
|
||||||
msgid "Something weird happened."
|
|
||||||
msgstr "Er is iets vreemds gebeurd."
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:66
|
|
||||||
#, php-format
|
|
||||||
msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one."
|
|
||||||
msgstr "Dit is de eerste keer dat u aameldt bij %s en uw OpenID moet gekoppeld worden aan uw lokale gebruiker. U kunt een nieuwe gebruiker aanmaken of koppelen met uw bestaande gebruiker als u die al hebt."
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:72
|
|
||||||
msgid "OpenID Account Setup"
|
|
||||||
msgstr "Instellingen OpenID"
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:97
|
|
||||||
msgid "Create new account"
|
|
||||||
msgstr "Nieuwe gebruiker aanmaken"
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:99
|
|
||||||
msgid "Create a new user with this nickname."
|
|
||||||
msgstr "Nieuwe gebruiker met deze naam aanmaken."
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:102
|
|
||||||
msgid "New nickname"
|
|
||||||
msgstr "Nieuwe gebruiker"
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:104
|
|
||||||
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
|
|
||||||
msgstr "1-64 kleine letters of getallen; geen leestekens of spaties"
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:114
|
|
||||||
msgid "My text and files are available under "
|
|
||||||
msgstr "Mijn teksten en bestanden zijn beschikbaar onder"
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:117
|
|
||||||
msgid " except this private data: password, email address, IM address, phone number."
|
|
||||||
msgstr "behalve de volgende privégegevens: wachtwoord, e-mailadres, IM-adres, telefoonnummer."
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:121
|
|
||||||
msgid "Create"
|
|
||||||
msgstr "Aanmaken"
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:126
|
|
||||||
msgid "Connect existing account"
|
|
||||||
msgstr "Koppelen met bestaande gebruiker"
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:128
|
|
||||||
msgid "If you already have an account, login with your username and password to connect it to your OpenID."
|
|
||||||
msgstr "Als u al een gebruiker hebt, meld u dan aan met uw gebruikersnaam en wachtwoord om de gebruiker te koppelen met uw OpenID."
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:131
|
|
||||||
msgid "Existing nickname"
|
|
||||||
msgstr "Bestaande gebruiker"
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:134
|
|
||||||
msgid "Password"
|
|
||||||
msgstr "Wachtwoord"
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:137
|
|
||||||
msgid "Connect"
|
|
||||||
msgstr "Koppelen"
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:215
|
|
||||||
#: finishopenidlogin.php:224
|
|
||||||
msgid "Registration not allowed."
|
|
||||||
msgstr "Registreren is niet mogelijk."
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:231
|
|
||||||
msgid "Not a valid invitation code."
|
|
||||||
msgstr "De uitnodigingscode is niet geldig."
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:241
|
|
||||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
|
||||||
msgstr "De gebruikersnaam mag alleen uit kleine letters en cijfers bestaan, en geen spaties bevatten."
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:246
|
|
||||||
msgid "Nickname not allowed."
|
|
||||||
msgstr "Deze gebruikersnaam is niet toegestaan."
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:251
|
|
||||||
msgid "Nickname already in use. Try another one."
|
|
||||||
msgstr "Deze gebruikersnaam wordt al gebruikt. Kies een andere."
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:258
|
|
||||||
#: finishopenidlogin.php:338
|
|
||||||
msgid "Stored OpenID not found."
|
|
||||||
msgstr "Het opgeslagen OpenID is niet aangetroffen."
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:267
|
|
||||||
msgid "Creating new account for OpenID that already has a user."
|
|
||||||
msgstr "Bezig met het aanmaken van een gebruiker voor OpenID die al een gebruiker heeft."
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:327
|
|
||||||
msgid "Invalid username or password."
|
|
||||||
msgstr "Ongeldige gebruikersnaam of wachtwoord."
|
|
||||||
|
|
||||||
#: finishopenidlogin.php:345
|
|
||||||
msgid "Error connecting user to OpenID."
|
|
||||||
msgstr "Fout bij het koppelen met OpenID."
|
|
||||||
|
|
||||||
#: openid.php:141
|
|
||||||
msgid "Cannot instantiate OpenID consumer object."
|
|
||||||
msgstr "Het was niet mogelijk een OpenID-object aan te maken."
|
|
||||||
|
|
||||||
#: openid.php:151
|
|
||||||
msgid "Not a valid OpenID."
|
|
||||||
msgstr "Geen geldige OpenID."
|
|
||||||
|
|
||||||
#: openid.php:153
|
|
||||||
#, php-format
|
|
||||||
msgid "OpenID failure: %s"
|
|
||||||
msgstr "OpenID-fout: %s"
|
|
||||||
|
|
||||||
#: openid.php:180
|
|
||||||
#, php-format
|
|
||||||
msgid "Could not redirect to server: %s"
|
|
||||||
msgstr "Het was niet mogelijk door te verwijzen naar de server: %s"
|
|
||||||
|
|
||||||
#: openid.php:198
|
|
||||||
#, php-format
|
|
||||||
msgid "Could not create OpenID form: %s"
|
|
||||||
msgstr "Het was niet mogelijk het OpenID-formulier aan te maken: %s"
|
|
||||||
|
|
||||||
#: openid.php:214
|
|
||||||
msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider."
|
|
||||||
msgstr "Dit formulier hoort zichzelf automatisch op te slaan. Als dat niet gebeurt, klik dan op de knop \"Aanmelden\" om naar uw OpenID-provider te gaan."
|
|
||||||
|
|
||||||
#: openid.php:246
|
|
||||||
msgid "Error saving the profile."
|
|
||||||
msgstr "Fout bij het opslaan van het profiel."
|
|
||||||
|
|
||||||
#: openid.php:257
|
|
||||||
msgid "Error saving the user."
|
|
||||||
msgstr "Fout bij het opslaan van de gebruiker."
|
|
||||||
|
|
||||||
#: openid.php:277
|
|
||||||
msgid "OpenID Auto-Submit"
|
|
||||||
msgstr "OpenID automatisch opslaan"
|
|
||||||
|
|
||||||
#: openidlogin.php:66
|
|
||||||
#, php-format
|
|
||||||
msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings."
|
|
||||||
msgstr "Om veiligheidsreden moet u opnieuw aanmelden met uw [OpenID](%%doc.openid%%) voordat u uw instellingen kunt wijzigen."
|
|
||||||
|
|
||||||
#: openidlogin.php:70
|
|
||||||
#, php-format
|
|
||||||
msgid "Login with an [OpenID](%%doc.openid%%) account."
|
|
||||||
msgstr "Aanmelden met een [OpenID](%%doc.openid%%)-gebruiker."
|
|
||||||
|
|
||||||
#: openidlogin.php:112
|
|
||||||
msgid "OpenID login"
|
|
||||||
msgstr "Aanmelden via OpenID"
|
|
||||||
|
|
||||||
#: openidlogin.php:117
|
|
||||||
#: openidsettings.php:107
|
|
||||||
msgid "OpenID URL"
|
|
||||||
msgstr "OpenID-URL"
|
|
||||||
|
|
||||||
#: openidlogin.php:119
|
|
||||||
msgid "Your OpenID URL"
|
|
||||||
msgstr "Uw OpenID-URL"
|
|
||||||
|
|
||||||
#: openidlogin.php:122
|
|
||||||
msgid "Remember me"
|
|
||||||
msgstr "Aanmeldgegevens onthouden"
|
|
||||||
|
|
||||||
#: openidlogin.php:123
|
|
||||||
msgid "Automatically login in the future; not for shared computers!"
|
|
||||||
msgstr "In het vervolg automatisch aanmelden. Niet gebruiken op gedeelde computers!"
|
|
||||||
|
|
||||||
#: openidlogin.php:127
|
|
||||||
msgid "Login"
|
|
||||||
msgstr "Aanmelden"
|
|
||||||
|
|
||||||
#: OpenIDPlugin.php:123
|
|
||||||
#: OpenIDPlugin.php:135
|
|
||||||
msgid "OpenID"
|
|
||||||
msgstr "OpenID"
|
|
||||||
|
|
||||||
#: OpenIDPlugin.php:124
|
|
||||||
msgid "Login or register with OpenID"
|
|
||||||
msgstr "Aanmelden of registreren met OpenID"
|
|
||||||
|
|
||||||
#: OpenIDPlugin.php:136
|
|
||||||
msgid "Add or remove OpenIDs"
|
|
||||||
msgstr "OpenID's toevoegen of verwijderen"
|
|
||||||
|
|
||||||
#: OpenIDPlugin.php:324
|
|
||||||
msgid "Use <a href=\"http://openid.net/\">OpenID</a> to login to the site."
|
|
||||||
msgstr "Gebruik <a href=\"http://openid.net/\">OpenID</a> om aan te melden bij de site."
|
|
||||||
|
|
||||||
#: openidserver.php:106
|
|
||||||
#, php-format
|
|
||||||
msgid "You are not authorized to use the identity %s."
|
|
||||||
msgstr "U mag de identiteit %s niet gebruiken."
|
|
||||||
|
|
||||||
#: openidserver.php:126
|
|
||||||
msgid "Just an OpenID provider. Nothing to see here, move along..."
|
|
||||||
msgstr "Gewoon een OpenID-provider. Niets te zien hier..."
|
|
||||||
|
|
||||||
#: openidsettings.php:59
|
#: openidsettings.php:59
|
||||||
msgid "OpenID settings"
|
msgid "OpenID settings"
|
||||||
@ -285,6 +34,11 @@ msgstr "OpenID toevoegen"
|
|||||||
msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"."
|
msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"."
|
||||||
msgstr "Als u een OpenID aan uw gebruiker wilt toevoegen, voer deze dan hieronder in en klik op \"Toevoegen\"."
|
msgstr "Als u een OpenID aan uw gebruiker wilt toevoegen, voer deze dan hieronder in en klik op \"Toevoegen\"."
|
||||||
|
|
||||||
|
#: openidsettings.php:107
|
||||||
|
#: openidlogin.php:119
|
||||||
|
msgid "OpenID URL"
|
||||||
|
msgstr "OpenID-URL"
|
||||||
|
|
||||||
#: openidsettings.php:117
|
#: openidsettings.php:117
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Toevoegen"
|
msgstr "Toevoegen"
|
||||||
@ -302,21 +56,303 @@ msgid "You can remove an OpenID from your account by clicking the button marked
|
|||||||
msgstr "U kunt een OpenID van uw gebruiker verwijderen door te klikken op de knop \"Verwijderen\"."
|
msgstr "U kunt een OpenID van uw gebruiker verwijderen door te klikken op de knop \"Verwijderen\"."
|
||||||
|
|
||||||
#: openidsettings.php:172
|
#: openidsettings.php:172
|
||||||
|
#: openidsettings.php:213
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Verwijderen"
|
msgstr "Verwijderen"
|
||||||
|
|
||||||
#: openidsettings.php:228
|
#: openidsettings.php:186
|
||||||
|
msgid "OpenID Trusted Sites"
|
||||||
|
msgstr "Vertrouwde OpenID-sites"
|
||||||
|
|
||||||
|
#: openidsettings.php:189
|
||||||
|
msgid "The following sites are allowed to access your identity and log you in. You can remove a site from this list to deny it access to your OpenID."
|
||||||
|
msgstr "De volgende sites hebben toegang tot uw indentiteit en kunnen u aanmelden. U kunt een site verwijderen uit deze lijst zodat deze niet langer toegang heeft tot uw OpenID."
|
||||||
|
|
||||||
|
#: openidsettings.php:231
|
||||||
|
#: finishopenidlogin.php:38
|
||||||
|
#: openidlogin.php:39
|
||||||
|
msgid "There was a problem with your session token. Try again, please."
|
||||||
|
msgstr "Er was een probleem met uw sessietoken. Probeer het opnieuw."
|
||||||
|
|
||||||
|
#: openidsettings.php:247
|
||||||
|
#: finishopenidlogin.php:51
|
||||||
|
msgid "Something weird happened."
|
||||||
|
msgstr "Er is iets vreemds gebeurd."
|
||||||
|
|
||||||
|
#: openidsettings.php:271
|
||||||
|
msgid "No such OpenID trustroot."
|
||||||
|
msgstr "Die OpenID trustroot bestaat niet."
|
||||||
|
|
||||||
|
#: openidsettings.php:275
|
||||||
|
msgid "Trustroots removed"
|
||||||
|
msgstr "De trustroots zijn verwijderd"
|
||||||
|
|
||||||
|
#: openidsettings.php:298
|
||||||
msgid "No such OpenID."
|
msgid "No such OpenID."
|
||||||
msgstr "De OpenID bestaat niet."
|
msgstr "De OpenID bestaat niet."
|
||||||
|
|
||||||
#: openidsettings.php:233
|
#: openidsettings.php:303
|
||||||
msgid "That OpenID does not belong to you."
|
msgid "That OpenID does not belong to you."
|
||||||
msgstr "Die OpenID is niet van u."
|
msgstr "Die OpenID is niet van u."
|
||||||
|
|
||||||
#: openidsettings.php:237
|
#: openidsettings.php:307
|
||||||
msgid "OpenID removed."
|
msgid "OpenID removed."
|
||||||
msgstr "OpenID verwijderd."
|
msgstr "OpenID verwijderd."
|
||||||
|
|
||||||
|
#: openid.php:137
|
||||||
|
msgid "Cannot instantiate OpenID consumer object."
|
||||||
|
msgstr "Het was niet mogelijk een OpenID-object aan te maken."
|
||||||
|
|
||||||
|
#: openid.php:147
|
||||||
|
msgid "Not a valid OpenID."
|
||||||
|
msgstr "Geen geldige OpenID."
|
||||||
|
|
||||||
|
#: openid.php:149
|
||||||
|
#, php-format
|
||||||
|
msgid "OpenID failure: %s"
|
||||||
|
msgstr "OpenID-fout: %s"
|
||||||
|
|
||||||
|
#: openid.php:176
|
||||||
|
#, php-format
|
||||||
|
msgid "Could not redirect to server: %s"
|
||||||
|
msgstr "Het was niet mogelijk door te verwijzen naar de server: %s"
|
||||||
|
|
||||||
|
#: openid.php:194
|
||||||
|
#, php-format
|
||||||
|
msgid "Could not create OpenID form: %s"
|
||||||
|
msgstr "Het was niet mogelijk het OpenID-formulier aan te maken: %s"
|
||||||
|
|
||||||
|
#: openid.php:210
|
||||||
|
msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider."
|
||||||
|
msgstr "Dit formulier hoort zichzelf automatisch op te slaan. Als dat niet gebeurt, klik dan op de knop \"Aanmelden\" om naar uw OpenID-provider te gaan."
|
||||||
|
|
||||||
|
#: openid.php:242
|
||||||
|
msgid "Error saving the profile."
|
||||||
|
msgstr "Fout bij het opslaan van het profiel."
|
||||||
|
|
||||||
|
#: openid.php:253
|
||||||
|
msgid "Error saving the user."
|
||||||
|
msgstr "Fout bij het opslaan van de gebruiker."
|
||||||
|
|
||||||
|
#: openid.php:282
|
||||||
|
msgid "Unauthorized URL used for OpenID login."
|
||||||
|
msgstr "Ongeautoriseerde URL gebruikt voor aanmelden via OpenID"
|
||||||
|
|
||||||
|
#: openid.php:302
|
||||||
|
#, fuzzy
|
||||||
|
msgid "OpenID Login Submission"
|
||||||
|
msgstr "Aanmelden via OpenID"
|
||||||
|
|
||||||
|
#: openid.php:312
|
||||||
|
msgid "Requesting authorization from your login provider..."
|
||||||
|
msgstr "Bezig met het vragen van autorisatie van uw aanmeldprovider..."
|
||||||
|
|
||||||
|
#: openid.php:315
|
||||||
|
msgid "If you are not redirected to your login provider in a few seconds, try pushing the button below."
|
||||||
|
msgstr "Als u binnen een aantal seconden niet wordt doorverwezen naar uw aanmeldprovider, klik dan op de onderstaande knop."
|
||||||
|
|
||||||
|
#. TRANS: Tooltip for main menu option "Login"
|
||||||
|
#: OpenIDPlugin.php:204
|
||||||
|
msgctxt "TOOLTIP"
|
||||||
|
msgid "Login to the site"
|
||||||
|
msgstr "Aanmelden bij de site"
|
||||||
|
|
||||||
|
#: OpenIDPlugin.php:207
|
||||||
|
#, fuzzy
|
||||||
|
msgctxt "MENU"
|
||||||
|
msgid "Login"
|
||||||
|
msgstr "Aanmelden"
|
||||||
|
|
||||||
|
#. TRANS: Tooltip for main menu option "Help"
|
||||||
|
#: OpenIDPlugin.php:212
|
||||||
|
msgctxt "TOOLTIP"
|
||||||
|
msgid "Help me!"
|
||||||
|
msgstr "Help me"
|
||||||
|
|
||||||
|
#: OpenIDPlugin.php:215
|
||||||
|
msgctxt "MENU"
|
||||||
|
msgid "Help"
|
||||||
|
msgstr "Hulp"
|
||||||
|
|
||||||
|
#. TRANS: Tooltip for main menu option "Search"
|
||||||
|
#: OpenIDPlugin.php:221
|
||||||
|
msgctxt "TOOLTIP"
|
||||||
|
msgid "Search for people or text"
|
||||||
|
msgstr "Zoeken naar mensen of tekst"
|
||||||
|
|
||||||
|
#: OpenIDPlugin.php:224
|
||||||
|
msgctxt "MENU"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Zoeken"
|
||||||
|
|
||||||
|
#: OpenIDPlugin.php:283
|
||||||
|
#: OpenIDPlugin.php:319
|
||||||
|
msgid "OpenID"
|
||||||
|
msgstr "OpenID"
|
||||||
|
|
||||||
|
#: OpenIDPlugin.php:284
|
||||||
|
msgid "Login or register with OpenID"
|
||||||
|
msgstr "Aanmelden of registreren met OpenID"
|
||||||
|
|
||||||
|
#: OpenIDPlugin.php:320
|
||||||
|
msgid "Add or remove OpenIDs"
|
||||||
|
msgstr "OpenID's toevoegen of verwijderen"
|
||||||
|
|
||||||
|
#: OpenIDPlugin.php:595
|
||||||
|
msgid "Use <a href=\"http://openid.net/\">OpenID</a> to login to the site."
|
||||||
|
msgstr "Gebruik <a href=\"http://openid.net/\">OpenID</a> om aan te melden bij de site."
|
||||||
|
|
||||||
|
#: openidserver.php:106
|
||||||
|
#, php-format
|
||||||
|
msgid "You are not authorized to use the identity %s."
|
||||||
|
msgstr "U mag de identiteit %s niet gebruiken."
|
||||||
|
|
||||||
|
#: openidserver.php:126
|
||||||
|
msgid "Just an OpenID provider. Nothing to see here, move along..."
|
||||||
|
msgstr "Gewoon een OpenID-provider. Niets te zien hier..."
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:34
|
||||||
|
#: openidlogin.php:30
|
||||||
|
msgid "Already logged in."
|
||||||
|
msgstr "U bent al aangemeld."
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:43
|
||||||
|
msgid "You can't register if you don't agree to the license."
|
||||||
|
msgstr "U kunt niet registreren als u niet akkoord gaat met de licentie."
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:65
|
||||||
|
#, php-format
|
||||||
|
msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one."
|
||||||
|
msgstr "Dit is de eerste keer dat u aameldt bij %s en uw OpenID moet gekoppeld worden aan uw lokale gebruiker. U kunt een nieuwe gebruiker aanmaken of koppelen met uw bestaande gebruiker als u die al hebt."
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:71
|
||||||
|
msgid "OpenID Account Setup"
|
||||||
|
msgstr "Instellingen OpenID"
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:101
|
||||||
|
msgid "Create new account"
|
||||||
|
msgstr "Nieuwe gebruiker aanmaken"
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:103
|
||||||
|
msgid "Create a new user with this nickname."
|
||||||
|
msgstr "Nieuwe gebruiker met deze naam aanmaken."
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:106
|
||||||
|
msgid "New nickname"
|
||||||
|
msgstr "Nieuwe gebruiker"
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:108
|
||||||
|
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
|
||||||
|
msgstr "1-64 kleine letters of getallen; geen leestekens of spaties"
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:130
|
||||||
|
msgid "Create"
|
||||||
|
msgstr "Aanmaken"
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:135
|
||||||
|
msgid "Connect existing account"
|
||||||
|
msgstr "Koppelen met bestaande gebruiker"
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:137
|
||||||
|
msgid "If you already have an account, login with your username and password to connect it to your OpenID."
|
||||||
|
msgstr "Als u al een gebruiker hebt, meld u dan aan met uw gebruikersnaam en wachtwoord om de gebruiker te koppelen met uw OpenID."
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:140
|
||||||
|
msgid "Existing nickname"
|
||||||
|
msgstr "Bestaande gebruiker"
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:143
|
||||||
|
msgid "Password"
|
||||||
|
msgstr "Wachtwoord"
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:146
|
||||||
|
msgid "Connect"
|
||||||
|
msgstr "Koppelen"
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:158
|
||||||
|
#: finishaddopenid.php:88
|
||||||
|
msgid "OpenID authentication cancelled."
|
||||||
|
msgstr "De authenticatie via OpenID is afgebroken."
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:162
|
||||||
|
#: finishaddopenid.php:92
|
||||||
|
#, php-format
|
||||||
|
msgid "OpenID authentication failed: %s"
|
||||||
|
msgstr "De authenticatie via OpenID is mislukt: %s"
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:227
|
||||||
|
#: finishopenidlogin.php:236
|
||||||
|
msgid "Registration not allowed."
|
||||||
|
msgstr "Registreren is niet mogelijk."
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:243
|
||||||
|
msgid "Not a valid invitation code."
|
||||||
|
msgstr "De uitnodigingscode is niet geldig."
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:253
|
||||||
|
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||||
|
msgstr "De gebruikersnaam mag alleen uit kleine letters en cijfers bestaan, en geen spaties bevatten."
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:258
|
||||||
|
msgid "Nickname not allowed."
|
||||||
|
msgstr "Deze gebruikersnaam is niet toegestaan."
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:263
|
||||||
|
msgid "Nickname already in use. Try another one."
|
||||||
|
msgstr "Deze gebruikersnaam wordt al gebruikt. Kies een andere."
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:270
|
||||||
|
#: finishopenidlogin.php:350
|
||||||
|
msgid "Stored OpenID not found."
|
||||||
|
msgstr "Het opgeslagen OpenID is niet aangetroffen."
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:279
|
||||||
|
msgid "Creating new account for OpenID that already has a user."
|
||||||
|
msgstr "Bezig met het aanmaken van een gebruiker voor OpenID die al een gebruiker heeft."
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:339
|
||||||
|
msgid "Invalid username or password."
|
||||||
|
msgstr "Ongeldige gebruikersnaam of wachtwoord."
|
||||||
|
|
||||||
|
#: finishopenidlogin.php:357
|
||||||
|
msgid "Error connecting user to OpenID."
|
||||||
|
msgstr "Fout bij het koppelen met OpenID."
|
||||||
|
|
||||||
|
#: openidlogin.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings."
|
||||||
|
msgstr "Om veiligheidsreden moet u opnieuw aanmelden met uw [OpenID](%%doc.openid%%) voordat u uw instellingen kunt wijzigen."
|
||||||
|
|
||||||
|
#: openidlogin.php:72
|
||||||
|
#, php-format
|
||||||
|
msgid "Login with an [OpenID](%%doc.openid%%) account."
|
||||||
|
msgstr "Aanmelden met een [OpenID](%%doc.openid%%)-gebruiker."
|
||||||
|
|
||||||
|
#: openidlogin.php:97
|
||||||
|
#: finishaddopenid.php:170
|
||||||
|
msgid "OpenID Login"
|
||||||
|
msgstr "Aanmelden via OpenID"
|
||||||
|
|
||||||
|
#: openidlogin.php:114
|
||||||
|
msgid "OpenID login"
|
||||||
|
msgstr "Aanmelden via OpenID"
|
||||||
|
|
||||||
|
#: openidlogin.php:121
|
||||||
|
msgid "Your OpenID URL"
|
||||||
|
msgstr "Uw OpenID-URL"
|
||||||
|
|
||||||
|
#: openidlogin.php:124
|
||||||
|
msgid "Remember me"
|
||||||
|
msgstr "Aanmeldgegevens onthouden"
|
||||||
|
|
||||||
|
#: openidlogin.php:125
|
||||||
|
msgid "Automatically login in the future; not for shared computers!"
|
||||||
|
msgstr "In het vervolg automatisch aanmelden. Niet gebruiken op gedeelde computers!"
|
||||||
|
|
||||||
|
#: openidlogin.php:129
|
||||||
|
msgid "Login"
|
||||||
|
msgstr "Aanmelden"
|
||||||
|
|
||||||
#: openidtrust.php:51
|
#: openidtrust.php:51
|
||||||
msgid "OpenID Identity Verification"
|
msgid "OpenID Identity Verification"
|
||||||
msgstr "OpenID-identiteitscontrole"
|
msgstr "OpenID-identiteitscontrole"
|
||||||
@ -325,16 +361,35 @@ msgstr "OpenID-identiteitscontrole"
|
|||||||
msgid "This page should only be reached during OpenID processing, not directly."
|
msgid "This page should only be reached during OpenID processing, not directly."
|
||||||
msgstr "Deze pagina hoort alleen bezocht te worden tijdens het verwerken van een OpenID, en niet direct."
|
msgstr "Deze pagina hoort alleen bezocht te worden tijdens het verwerken van een OpenID, en niet direct."
|
||||||
|
|
||||||
#: openidtrust.php:118
|
#: openidtrust.php:117
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s has asked to verify your identity. Click Continue to verify your identity and login without creating a new password."
|
msgid "%s has asked to verify your identity. Click Continue to verify your identity and login without creating a new password."
|
||||||
msgstr "%s heeft gevraagd uw identiteit te bevestigen. Klik op \"Doorgaan\" om uw indentiteit te controleren en aan te melden zonder een wachtwoord te hoeven invoeren."
|
msgstr "%s heeft gevraagd uw identiteit te bevestigen. Klik op \"Doorgaan\" om uw indentiteit te controleren en aan te melden zonder een wachtwoord te hoeven invoeren."
|
||||||
|
|
||||||
#: openidtrust.php:136
|
#: openidtrust.php:135
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Doorgaan"
|
msgstr "Doorgaan"
|
||||||
|
|
||||||
#: openidtrust.php:137
|
#: openidtrust.php:136
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Annuleren"
|
msgstr "Annuleren"
|
||||||
|
|
||||||
|
#: finishaddopenid.php:67
|
||||||
|
msgid "Not logged in."
|
||||||
|
msgstr "Niet aangemeld."
|
||||||
|
|
||||||
|
#: finishaddopenid.php:112
|
||||||
|
msgid "You already have this OpenID!"
|
||||||
|
msgstr "U hebt deze OpenID al!"
|
||||||
|
|
||||||
|
#: finishaddopenid.php:114
|
||||||
|
msgid "Someone else already has this OpenID."
|
||||||
|
msgstr "Iemand anders gebruikt deze OpenID al."
|
||||||
|
|
||||||
|
#: finishaddopenid.php:126
|
||||||
|
msgid "Error connecting user."
|
||||||
|
msgstr "Fout bij het verbinden met de gebruiker."
|
||||||
|
|
||||||
|
#: finishaddopenid.php:131
|
||||||
|
msgid "Error updating profile"
|
||||||
|
msgstr "Fout bij het bijwerken van het profiel."
|
||||||
|
@ -134,6 +134,7 @@ function oid_authenticate($openid_url, $returnto, $immediate=false)
|
|||||||
$consumer = oid_consumer();
|
$consumer = oid_consumer();
|
||||||
|
|
||||||
if (!$consumer) {
|
if (!$consumer) {
|
||||||
|
// TRANS: OpenID plugin server error.
|
||||||
common_server_error(_m('Cannot instantiate OpenID consumer object.'));
|
common_server_error(_m('Cannot instantiate OpenID consumer object.'));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -144,8 +145,11 @@ function oid_authenticate($openid_url, $returnto, $immediate=false)
|
|||||||
|
|
||||||
// Handle failure status return values.
|
// Handle failure status return values.
|
||||||
if (!$auth_request) {
|
if (!$auth_request) {
|
||||||
|
// TRANS: OpenID plugin message. Given when an OpenID is not valid.
|
||||||
return _m('Not a valid OpenID.');
|
return _m('Not a valid OpenID.');
|
||||||
} else if (Auth_OpenID::isFailure($auth_request)) {
|
} else if (Auth_OpenID::isFailure($auth_request)) {
|
||||||
|
// TRANS: OpenID plugin server error. Given when the OpenID authentication request fails.
|
||||||
|
// TRANS: %s is the failure message.
|
||||||
return sprintf(_m('OpenID failure: %s'), $auth_request->message);
|
return sprintf(_m('OpenID failure: %s'), $auth_request->message);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -173,6 +177,8 @@ function oid_authenticate($openid_url, $returnto, $immediate=false)
|
|||||||
$immediate);
|
$immediate);
|
||||||
if (!$redirect_url) {
|
if (!$redirect_url) {
|
||||||
} else if (Auth_OpenID::isFailure($redirect_url)) {
|
} else if (Auth_OpenID::isFailure($redirect_url)) {
|
||||||
|
// TRANS: OpenID plugin server error. Given when the OpenID authentication request cannot be redirected.
|
||||||
|
// TRANS: %s is the failure message.
|
||||||
return sprintf(_m('Could not redirect to server: %s'), $redirect_url->message);
|
return sprintf(_m('Could not redirect to server: %s'), $redirect_url->message);
|
||||||
} else {
|
} else {
|
||||||
common_redirect($redirect_url, 303);
|
common_redirect($redirect_url, 303);
|
||||||
@ -191,6 +197,8 @@ function oid_authenticate($openid_url, $returnto, $immediate=false)
|
|||||||
// Display an error if the form markup couldn't be generated;
|
// Display an error if the form markup couldn't be generated;
|
||||||
// otherwise, render the HTML.
|
// otherwise, render the HTML.
|
||||||
if (Auth_OpenID::isFailure($form_html)) {
|
if (Auth_OpenID::isFailure($form_html)) {
|
||||||
|
// TRANS: OpenID plugin server error if the form markup could not be generated.
|
||||||
|
// TRANS: %s is the failure message.
|
||||||
common_server_error(sprintf(_m('Could not create OpenID form: %s'), $form_html->message));
|
common_server_error(sprintf(_m('Could not create OpenID form: %s'), $form_html->message));
|
||||||
} else {
|
} else {
|
||||||
$action = new AutosubmitAction(); // see below
|
$action = new AutosubmitAction(); // see below
|
||||||
@ -207,6 +215,7 @@ function oid_authenticate($openid_url, $returnto, $immediate=false)
|
|||||||
function _oid_print_instructions()
|
function _oid_print_instructions()
|
||||||
{
|
{
|
||||||
common_element('div', 'instructions',
|
common_element('div', 'instructions',
|
||||||
|
// TRANS: OpenID plugin user instructions.
|
||||||
_m('This form should automatically submit itself. '.
|
_m('This form should automatically submit itself. '.
|
||||||
'If not, click the submit button to go to your '.
|
'If not, click the submit button to go to your '.
|
||||||
'OpenID provider.'));
|
'OpenID provider.'));
|
||||||
@ -239,6 +248,7 @@ function oid_update_user(&$user, &$sreg)
|
|||||||
# XXX save timezone if it's passed
|
# XXX save timezone if it's passed
|
||||||
|
|
||||||
if (!$profile->update($orig_profile)) {
|
if (!$profile->update($orig_profile)) {
|
||||||
|
// TRANS: OpenID plugin server error.
|
||||||
common_server_error(_m('Error saving the profile.'));
|
common_server_error(_m('Error saving the profile.'));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -250,6 +260,7 @@ function oid_update_user(&$user, &$sreg)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!$user->update($orig_user)) {
|
if (!$user->update($orig_user)) {
|
||||||
|
// TRANS: OpenID plugin server error.
|
||||||
common_server_error(_m('Error saving the user.'));
|
common_server_error(_m('Error saving the user.'));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -279,6 +290,7 @@ function oid_assert_allowed($url)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// TRANS: OpenID plugin client exception (403).
|
||||||
throw new ClientException(_m("Unauthorized URL used for OpenID login."), 403);
|
throw new ClientException(_m("Unauthorized URL used for OpenID login."), 403);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -299,6 +311,7 @@ class AutosubmitAction extends Action
|
|||||||
|
|
||||||
function title()
|
function title()
|
||||||
{
|
{
|
||||||
|
// TRANS: Title
|
||||||
return _m('OpenID Login Submission');
|
return _m('OpenID Login Submission');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -309,9 +322,11 @@ class AutosubmitAction extends Action
|
|||||||
$this->element('img', array('src' => Theme::path('images/icons/icon_processing.gif', 'base'),
|
$this->element('img', array('src' => Theme::path('images/icons/icon_processing.gif', 'base'),
|
||||||
// for some reason the base CSS sets <img>s as block display?!
|
// for some reason the base CSS sets <img>s as block display?!
|
||||||
'style' => 'display: inline'));
|
'style' => 'display: inline'));
|
||||||
|
// TRANS: OpenID plugin message used while requesting authorization user's OpenID login provider.
|
||||||
$this->text(_m('Requesting authorization from your login provider...'));
|
$this->text(_m('Requesting authorization from your login provider...'));
|
||||||
$this->raw('</p>');
|
$this->raw('</p>');
|
||||||
$this->raw('<p style="margin-top: 60px; font-style: italic">');
|
$this->raw('<p style="margin-top: 60px; font-style: italic">');
|
||||||
|
// TRANS: OpenID plugin message. User instruction while requesting authorization user's OpenID login provider.
|
||||||
$this->text(_m('If you are not redirected to your login provider in a few seconds, try pushing the button below.'));
|
$this->text(_m('If you are not redirected to your login provider in a few seconds, try pushing the button below.'));
|
||||||
$this->raw('</p>');
|
$this->raw('</p>');
|
||||||
$this->raw($this->form_html);
|
$this->raw($this->form_html);
|
||||||
|
@ -27,6 +27,7 @@ class OpenidloginAction extends Action
|
|||||||
{
|
{
|
||||||
parent::handle($args);
|
parent::handle($args);
|
||||||
if (common_is_real_login()) {
|
if (common_is_real_login()) {
|
||||||
|
// TRANS: Client error message trying to log on with OpenID while already logged on.
|
||||||
$this->clientError(_m('Already logged in.'));
|
$this->clientError(_m('Already logged in.'));
|
||||||
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
||||||
$openid_url = $this->trimmed('openid_url');
|
$openid_url = $this->trimmed('openid_url');
|
||||||
@ -36,6 +37,7 @@ class OpenidloginAction extends Action
|
|||||||
# CSRF protection
|
# CSRF protection
|
||||||
$token = $this->trimmed('token');
|
$token = $this->trimmed('token');
|
||||||
if (!$token || $token != common_session_token()) {
|
if (!$token || $token != common_session_token()) {
|
||||||
|
// TRANS: Message given when there is a problem with the user's session token.
|
||||||
$this->showForm(_m('There was a problem with your session token. Try again, please.'), $openid_url);
|
$this->showForm(_m('There was a problem with your session token. Try again, please.'), $openid_url);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -65,10 +67,14 @@ class OpenidloginAction extends Action
|
|||||||
common_get_returnto()) {
|
common_get_returnto()) {
|
||||||
// rememberme logins have to reauthenticate before
|
// rememberme logins have to reauthenticate before
|
||||||
// changing any profile settings (cookie-stealing protection)
|
// changing any profile settings (cookie-stealing protection)
|
||||||
|
// TRANS: OpenID plugin message. Rememberme logins have to reauthenticate before changing any profile settings.
|
||||||
|
// TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)".
|
||||||
return _m('For security reasons, please re-login with your ' .
|
return _m('For security reasons, please re-login with your ' .
|
||||||
'[OpenID](%%doc.openid%%) ' .
|
'[OpenID](%%doc.openid%%) ' .
|
||||||
'before changing your settings.');
|
'before changing your settings.');
|
||||||
} else {
|
} else {
|
||||||
|
// TRANS: OpenID plugin message.
|
||||||
|
// TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)".
|
||||||
return _m('Login with an [OpenID](%%doc.openid%%) account.');
|
return _m('Login with an [OpenID](%%doc.openid%%) account.');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -94,6 +100,7 @@ class OpenidloginAction extends Action
|
|||||||
|
|
||||||
function title()
|
function title()
|
||||||
{
|
{
|
||||||
|
// TRANS: OpenID plugin message. Title.
|
||||||
return _m('OpenID Login');
|
return _m('OpenID Login');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -111,22 +118,28 @@ class OpenidloginAction extends Action
|
|||||||
'class' => 'form_settings',
|
'class' => 'form_settings',
|
||||||
'action' => $formaction));
|
'action' => $formaction));
|
||||||
$this->elementStart('fieldset');
|
$this->elementStart('fieldset');
|
||||||
|
// TRANS: OpenID plugin logon form legend.
|
||||||
$this->element('legend', null, _m('OpenID login'));
|
$this->element('legend', null, _m('OpenID login'));
|
||||||
$this->hidden('token', common_session_token());
|
$this->hidden('token', common_session_token());
|
||||||
|
|
||||||
$this->elementStart('ul', 'form_data');
|
$this->elementStart('ul', 'form_data');
|
||||||
$this->elementStart('li');
|
$this->elementStart('li');
|
||||||
|
// TRANS: OpenID plugin logon form field label.
|
||||||
$this->input('openid_url', _m('OpenID URL'),
|
$this->input('openid_url', _m('OpenID URL'),
|
||||||
$this->openid_url,
|
$this->openid_url,
|
||||||
|
// TRANS: OpenID plugin logon form field instructions.
|
||||||
_m('Your OpenID URL'));
|
_m('Your OpenID URL'));
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
$this->elementStart('li', array('id' => 'settings_rememberme'));
|
$this->elementStart('li', array('id' => 'settings_rememberme'));
|
||||||
|
// TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie.
|
||||||
$this->checkbox('rememberme', _m('Remember me'), false,
|
$this->checkbox('rememberme', _m('Remember me'), false,
|
||||||
|
// TRANS: OpenID plugin logon form field instructions.
|
||||||
_m('Automatically login in the future; ' .
|
_m('Automatically login in the future; ' .
|
||||||
'not for shared computers!'));
|
'not for shared computers!'));
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
$this->elementEnd('ul');
|
$this->elementEnd('ul');
|
||||||
$this->submit('submit', _m('Login'));
|
// TRANS: OpenID plugin logon form button label to start logon with the data provided in the logon form.
|
||||||
|
$this->submit('submit', _m('BUTTON', 'Login'));
|
||||||
$this->elementEnd('fieldset');
|
$this->elementEnd('fieldset');
|
||||||
$this->elementEnd('form');
|
$this->elementEnd('form');
|
||||||
}
|
}
|
||||||
|
@ -103,6 +103,7 @@ class OpenidserverAction extends Action
|
|||||||
$response = $this->generateDenyResponse($request);
|
$response = $this->generateDenyResponse($request);
|
||||||
} else {
|
} else {
|
||||||
//invalid
|
//invalid
|
||||||
|
// TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403).
|
||||||
$this->clientError(sprintf(_m('You are not authorized to use the identity %s.'),$request->identity),$code=403);
|
$this->clientError(sprintf(_m('You are not authorized to use the identity %s.'),$request->identity),$code=403);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -123,6 +124,7 @@ class OpenidserverAction extends Action
|
|||||||
}
|
}
|
||||||
$this->raw($response->body);
|
$this->raw($response->body);
|
||||||
}else{
|
}else{
|
||||||
|
// TRANS: OpenID plugin client error given when not getting a response for a given OpenID provider (500).
|
||||||
$this->clientError(_m('Just an OpenID provider. Nothing to see here, move along...'),$code=500);
|
$this->clientError(_m('Just an OpenID provider. Nothing to see here, move along...'),$code=500);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
21
plugins/PostDebug/locale/PostDebug.pot
Normal file
21
plugins/PostDebug/locale/PostDebug.pot
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: PostDebugPlugin.php:58
|
||||||
|
msgid "Debugging tool to record request details on POST."
|
||||||
|
msgstr ""
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-03-01 14:58-0800\n"
|
"POT-Creation-Date: 2010-04-29 23:39+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
22
plugins/PtitUrl/locale/PtitUrl.pot
Normal file
22
plugins/PtitUrl/locale/PtitUrl.pot
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: PtitUrlPlugin.php:67
|
||||||
|
#, php-format
|
||||||
|
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||||
|
msgstr ""
|
24
plugins/RSSCloud/locale/RSSCloud.pot
Normal file
24
plugins/RSSCloud/locale/RSSCloud.pot
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: RSSCloudPlugin.php:260
|
||||||
|
msgid ""
|
||||||
|
"The RSSCloud plugin enables your StatusNet instance to publish real-time "
|
||||||
|
"updates for profile RSS feeds using the <a href=\"http://rsscloud.org/"
|
||||||
|
"\">RSSCloud protocol</a>\"."
|
||||||
|
msgstr ""
|
23
plugins/Recaptcha/locale/Recaptcha.pot
Normal file
23
plugins/Recaptcha/locale/Recaptcha.pot
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: RecaptchaPlugin.php:97
|
||||||
|
msgid ""
|
||||||
|
"Uses <a href=\"http://recaptcha.org/\">Recaptcha</a> service to add a "
|
||||||
|
"captcha to the registration page."
|
||||||
|
msgstr ""
|
29
plugins/RegisterThrottle/locale/RegisterThrottle.pot
Normal file
29
plugins/RegisterThrottle/locale/RegisterThrottle.pot
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: RegisterThrottlePlugin.php:122 RegisterThrottlePlugin.php:161
|
||||||
|
msgid "Cannot find IP address."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: RegisterThrottlePlugin.php:167
|
||||||
|
msgid "Cannot find user after successful registration."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: RegisterThrottlePlugin.php:200
|
||||||
|
msgid "Throttles excessive registration from a single IP."
|
||||||
|
msgstr ""
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-03-10 10:05-0800\n"
|
"POT-Creation-Date: 2010-04-29 23:39+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -0,0 +1,24 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: ReverseUsernameAuthenticationPlugin.php:67
|
||||||
|
msgid ""
|
||||||
|
"The Reverse Username Authentication plugin allows for StatusNet to handle "
|
||||||
|
"authentication by checking if the provided password is the same as the "
|
||||||
|
"reverse of the username."
|
||||||
|
msgstr ""
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-03-01 14:58-0800\n"
|
"POT-Creation-Date: 2010-04-29 23:39+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -17,10 +17,28 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||||
|
|
||||||
#: hello.php:115 SamplePlugin.php:266
|
#: User_greeting_count.php:163
|
||||||
|
#, php-format
|
||||||
|
msgid "Could not save new greeting count for %d"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: User_greeting_count.php:176
|
||||||
|
#, php-format
|
||||||
|
msgid "Could not increment greeting count for %d"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: SamplePlugin.php:266 hello.php:115
|
||||||
msgid "Hello"
|
msgid "Hello"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: SamplePlugin.php:266
|
||||||
|
msgid "A warm greeting"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: SamplePlugin.php:277
|
||||||
|
msgid "A sample plugin to show basics of development for new hackers."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: hello.php:117 hello.php:141
|
#: hello.php:117 hello.php:141
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Hello, %s"
|
msgid "Hello, %s"
|
||||||
@ -36,21 +54,3 @@ msgid "I have greeted you %d time."
|
|||||||
msgid_plural "I have greeted you %d times."
|
msgid_plural "I have greeted you %d times."
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: SamplePlugin.php:266
|
|
||||||
msgid "A warm greeting"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: SamplePlugin.php:277
|
|
||||||
msgid "A sample plugin to show basics of development for new hackers."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: User_greeting_count.php:163
|
|
||||||
#, php-format
|
|
||||||
msgid "Could not save new greeting count for %d"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: User_greeting_count.php:176
|
|
||||||
#, php-format
|
|
||||||
msgid "Could not increment greeting count for %d"
|
|
||||||
msgstr ""
|
|
||||||
|
22
plugins/SimpleUrl/locale/SimpleUrl.pot
Normal file
22
plugins/SimpleUrl/locale/SimpleUrl.pot
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: SimpleUrlPlugin.php:58
|
||||||
|
#, php-format
|
||||||
|
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||||
|
msgstr ""
|
24
plugins/TabFocus/locale/TabFocus.pot
Normal file
24
plugins/TabFocus/locale/TabFocus.pot
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: TabFocusPlugin.php:54
|
||||||
|
msgid ""
|
||||||
|
"TabFocus changes the notice form behavior so that, while in the text area, "
|
||||||
|
"pressing the tab key focuses the \"Send\" button, matching the behavor of "
|
||||||
|
"Twitter."
|
||||||
|
msgstr ""
|
22
plugins/TightUrl/locale/TightUrl.pot
Normal file
22
plugins/TightUrl/locale/TightUrl.pot
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
# 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: 2010-04-29 23:39+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: TightUrlPlugin.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||||
|
msgstr ""
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-03-01 14:58-0800\n"
|
"POT-Creation-Date: 2010-04-29 23:39+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -16,11 +16,11 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=CHARSET\n"
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: twitter.php:320
|
#: twitter.php:342
|
||||||
msgid "Your Twitter bridge has been disabled."
|
msgid "Your Twitter bridge has been disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: twitter.php:324
|
#: twitter.php:346
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Hi, %1$s. We're sorry to inform you that your link to Twitter has been "
|
"Hi, %1$s. We're sorry to inform you that your link to Twitter has been "
|
||||||
@ -36,6 +36,89 @@ msgid ""
|
|||||||
"%3$s\n"
|
"%3$s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: TwitterBridgePlugin.php:155 TwitterBridgePlugin.php:178
|
||||||
|
#: TwitterBridgePlugin.php:291 twitteradminpanel.php:54
|
||||||
|
msgid "Twitter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: TwitterBridgePlugin.php:156
|
||||||
|
msgid "Login or register using Twitter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: TwitterBridgePlugin.php:179
|
||||||
|
msgid "Twitter integration options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: TwitterBridgePlugin.php:292
|
||||||
|
msgid "Twitter bridge configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: TwitterBridgePlugin.php:317
|
||||||
|
msgid ""
|
||||||
|
"The Twitter \"bridge\" plugin allows you to integrate your StatusNet "
|
||||||
|
"instance with <a href=\"http://twitter.com/\">Twitter</a>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: twitteradminpanel.php:65
|
||||||
|
msgid "Twitter bridge settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: twitteradminpanel.php:148
|
||||||
|
msgid "Invalid consumer key. Max length is 255 characters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: twitteradminpanel.php:154
|
||||||
|
msgid "Invalid consumer secret. Max length is 255 characters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: twitteradminpanel.php:207
|
||||||
|
msgid "Twitter application settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: twitteradminpanel.php:213
|
||||||
|
msgid "Consumer key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: twitteradminpanel.php:214
|
||||||
|
msgid "Consumer key assigned by Twitter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: twitteradminpanel.php:222
|
||||||
|
msgid "Consumer secret"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: twitteradminpanel.php:223
|
||||||
|
msgid "Consumer secret assigned by Twitter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: twitteradminpanel.php:240
|
||||||
|
msgid "Integration source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: twitteradminpanel.php:241
|
||||||
|
msgid "Name of your Twitter application"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: twitteradminpanel.php:253
|
||||||
|
msgid "Options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: twitteradminpanel.php:260
|
||||||
|
msgid "Enable \"Sign-in with Twitter\""
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: twitteradminpanel.php:262
|
||||||
|
msgid "Allow users to login with their Twitter credentials"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: twitteradminpanel.php:268
|
||||||
|
msgid "Enable Twitter import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: twitteradminpanel.php:270
|
||||||
|
msgid "Allow users to import their Twitter friends' timelines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: twitterauthorization.php:181 twitterauthorization.php:229
|
#: twitterauthorization.php:181 twitterauthorization.php:229
|
||||||
msgid "Couldn't link your Twitter account."
|
msgid "Couldn't link your Twitter account."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -44,20 +127,6 @@ msgstr ""
|
|||||||
msgid "Couldn't link your Twitter account: oauth_token mismatch."
|
msgid "Couldn't link your Twitter account: oauth_token mismatch."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: TwitterBridgePlugin.php:114
|
|
||||||
msgid "Twitter"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: TwitterBridgePlugin.php:115
|
|
||||||
msgid "Twitter integration options"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: TwitterBridgePlugin.php:207
|
|
||||||
msgid ""
|
|
||||||
"The Twitter \"bridge\" plugin allows you to integrate your StatusNet "
|
|
||||||
"instance with <a href=\"http://twitter.com/\">Twitter</a>."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: twittersettings.php:59
|
#: twittersettings.php:59
|
||||||
msgid "Twitter settings"
|
msgid "Twitter settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
Loading…
Reference in New Issue
Block a user