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 Version 4 |
|
||||
// +----------------------------------------------------------------------+
|
||||
// | Copyright (c) 1997-2003 The PHP Group |
|
||||
// +----------------------------------------------------------------------+
|
||||
// | 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 |
|
||||
// | available at through the world-wide-web at |
|
||||
// | http://www.php.net/license/2_02.txt. |
|
||||
// | If you did not receive a copy of the PHP license and are unable to |
|
||||
// | obtain it through the world-wide-web, please send a note to |
|
||||
// | license@php.net so we can mail you a copy immediately. |
|
||||
// +----------------------------------------------------------------------+
|
||||
// | Author: Chuck Hagenbuch <chuck@horde.org> |
|
||||
// +----------------------------------------------------------------------+
|
||||
//
|
||||
// $Id: Mail.php,v 1.17 2006/09/15 03:41:18 jon Exp $
|
||||
/**
|
||||
* PEAR's Mail:: interface.
|
||||
*
|
||||
* PHP versions 4 and 5
|
||||
*
|
||||
* LICENSE:
|
||||
*
|
||||
* Copyright (c) 2002-2007, Richard Heyes
|
||||
* All rights reserved.
|
||||
*
|
||||
* 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
|
||||
* @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';
|
||||
|
||||
@ -26,7 +51,7 @@ require_once 'PEAR.php';
|
||||
* useful in multiple mailer backends.
|
||||
*
|
||||
* @access public
|
||||
* @version $Revision: 1.17 $
|
||||
* @version $Revision: 294747 $
|
||||
* @package Mail
|
||||
*/
|
||||
class Mail
|
||||
@ -82,12 +107,20 @@ class Mail
|
||||
* @return mixed Returns true on success, or a PEAR_Error
|
||||
* containing a descriptive error message on
|
||||
* failure.
|
||||
*
|
||||
* @access public
|
||||
* @deprecated use Mail_mail::send instead
|
||||
*/
|
||||
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 (is_array($recipients)) {
|
||||
@ -106,7 +139,6 @@ class Mail
|
||||
list(, $text_headers) = Mail::prepareHeaders($headers);
|
||||
|
||||
return mail($recipients, $subject, $body, $text_headers);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
@ -151,9 +183,9 @@ class Mail
|
||||
foreach ($headers as $key => $value) {
|
||||
if (strcasecmp($key, 'From') === 0) {
|
||||
include_once 'Mail/RFC822.php';
|
||||
$parser = &new Mail_RFC822();
|
||||
$parser = new Mail_RFC822();
|
||||
$addresses = $parser->parseAddressList($value, 'localhost', false);
|
||||
if (PEAR::isError($addresses)) {
|
||||
if (is_a($addresses, 'PEAR_Error')) {
|
||||
return $addresses;
|
||||
}
|
||||
|
||||
@ -221,7 +253,7 @@ class Mail
|
||||
$addresses = Mail_RFC822::parseAddressList($recipients, 'localhost', false);
|
||||
|
||||
// If parseAddressList() returned a PEAR_Error object, just return it.
|
||||
if (PEAR::isError($addresses)) {
|
||||
if (is_a($addresses, 'PEAR_Error')) {
|
||||
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
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright (c) 2001-2002, Richard Heyes |
|
||||
// | All rights reserved. |
|
||||
// | |
|
||||
// | 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. |
|
||||
// | |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Authors: Richard Heyes <richard@phpguru.org> |
|
||||
// | Chuck Hagenbuch <chuck@horde.org> |
|
||||
// +-----------------------------------------------------------------------+
|
||||
/**
|
||||
* RFC 822 Email address list validation Utility
|
||||
*
|
||||
* PHP versions 4 and 5
|
||||
*
|
||||
* LICENSE:
|
||||
*
|
||||
* Copyright (c) 2001-2010, Richard Heyes
|
||||
* All rights reserved.
|
||||
*
|
||||
* 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
|
||||
* @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
|
||||
@ -52,7 +63,7 @@
|
||||
*
|
||||
* @author Richard Heyes <richard@phpguru.org>
|
||||
* @author Chuck Hagenbuch <chuck@horde.org>
|
||||
* @version $Revision: 1.24 $
|
||||
* @version $Revision: 294749 $
|
||||
* @license BSD
|
||||
* @package Mail
|
||||
*/
|
||||
@ -635,8 +646,8 @@ class Mail_RFC822 {
|
||||
$comment = $this->_splitCheck($parts, ')');
|
||||
$comments[] = $comment;
|
||||
|
||||
// +1 is for the trailing )
|
||||
$_mailbox = substr($_mailbox, strpos($_mailbox, $comment)+strlen($comment)+1);
|
||||
// +2 is for the brackets
|
||||
$_mailbox = substr($_mailbox, strpos($_mailbox, '('.$comment)+strlen($comment)+2);
|
||||
} else {
|
||||
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 Version 4 |
|
||||
// +----------------------------------------------------------------------+
|
||||
// | Copyright (c) 1997-2003 The PHP Group |
|
||||
// +----------------------------------------------------------------------+
|
||||
// | 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 |
|
||||
// | available at through the world-wide-web at |
|
||||
// | http://www.php.net/license/2_02.txt. |
|
||||
// | If you did not receive a copy of the PHP license and are unable to |
|
||||
// | obtain it through the world-wide-web, please send a note to |
|
||||
// | license@php.net so we can mail you a copy immediately. |
|
||||
// +----------------------------------------------------------------------+
|
||||
// | Author: Chuck Hagenbuch <chuck@horde.org> |
|
||||
// +----------------------------------------------------------------------+
|
||||
//
|
||||
// $Id: mail.php,v 1.20 2007/10/06 17:00:00 chagenbu Exp $
|
||||
/**
|
||||
* internal PHP-mail() implementation of the PEAR Mail:: interface.
|
||||
*
|
||||
* PHP versions 4 and 5
|
||||
*
|
||||
* LICENSE:
|
||||
*
|
||||
* Copyright (c) 2010 Chuck Hagenbuch
|
||||
* All rights reserved.
|
||||
*
|
||||
* 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
|
||||
* @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.
|
||||
* @package Mail
|
||||
* @version $Revision: 1.20 $
|
||||
* @version $Revision: 294747 $
|
||||
*/
|
||||
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 Version 4 |
|
||||
// +----------------------------------------------------------------------+
|
||||
// | Copyright (c) 1997-2003 The PHP Group |
|
||||
// +----------------------------------------------------------------------+
|
||||
// | 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 |
|
||||
// | available at through the world-wide-web at |
|
||||
// | http://www.php.net/license/2_02.txt. |
|
||||
// | If you did not receive a copy of the PHP license and are unable to |
|
||||
// | obtain it through the world-wide-web, please send a note to |
|
||||
// | license@php.net so we can mail you a copy immediately. |
|
||||
// +----------------------------------------------------------------------+
|
||||
// | Author: Chuck Hagenbuch <chuck@horde.org> |
|
||||
// +----------------------------------------------------------------------+
|
||||
//
|
||||
// $Id: mock.php,v 1.1 2007/12/08 17:57:54 chagenbu Exp $
|
||||
//
|
||||
/**
|
||||
* Mock implementation
|
||||
*
|
||||
* PHP versions 4 and 5
|
||||
*
|
||||
* LICENSE:
|
||||
*
|
||||
* Copyright (c) 2010 Chuck Hagenbuch
|
||||
* All rights reserved.
|
||||
*
|
||||
* 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
|
||||
* @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.
|
||||
* @access public
|
||||
* @package Mail
|
||||
* @version $Revision: 1.1 $
|
||||
* @version $Revision: 294747 $
|
||||
*/
|
||||
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 Version 4 |
|
||||
// +----------------------------------------------------------------------+
|
||||
// | Copyright (c) 1997-2003 The PHP Group |
|
||||
// +----------------------------------------------------------------------+
|
||||
// | 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 |
|
||||
// | available at through the world-wide-web at |
|
||||
// | http://www.php.net/license/2_02.txt. |
|
||||
// | If you did not receive a copy of the PHP license and are unable to |
|
||||
// | obtain it through the world-wide-web, please send a note to |
|
||||
// | license@php.net so we can mail you a copy immediately. |
|
||||
// +----------------------------------------------------------------------+
|
||||
// | Author: Phil Kernick <philk@rotfl.com.au> |
|
||||
// +----------------------------------------------------------------------+
|
||||
//
|
||||
// $Id: null.php,v 1.2 2004/04/06 05:19:03 jon Exp $
|
||||
//
|
||||
/**
|
||||
* Null implementation of the PEAR Mail interface
|
||||
*
|
||||
* PHP versions 4 and 5
|
||||
*
|
||||
* LICENSE:
|
||||
*
|
||||
* Copyright (c) 2010 Phil Kernick
|
||||
* All rights reserved.
|
||||
*
|
||||
* 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
|
||||
* @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.
|
||||
* @access public
|
||||
* @package Mail
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 294747 $
|
||||
*/
|
||||
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.
|
||||
* @access public
|
||||
* @package Mail
|
||||
* @version $Revision: 1.19 $
|
||||
* @version $Revision: 294744 $
|
||||
*/
|
||||
class Mail_sendmail extends Mail {
|
||||
|
||||
@ -117,7 +117,7 @@ class Mail_sendmail extends Mail {
|
||||
if (is_a($recipients, 'PEAR_Error')) {
|
||||
return $recipients;
|
||||
}
|
||||
$recipients = escapeShellCmd(implode(' ', $recipients));
|
||||
$recipients = implode(' ', array_map('escapeshellarg', $recipients));
|
||||
|
||||
$headerElements = $this->prepareHeaders($headers);
|
||||
if (is_a($headerElements, 'PEAR_Error')) {
|
||||
@ -141,7 +141,8 @@ class Mail_sendmail extends Mail {
|
||||
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');
|
||||
if (!$mail) {
|
||||
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 Version 4 |
|
||||
// +----------------------------------------------------------------------+
|
||||
// | Copyright (c) 1997-2003 The PHP Group |
|
||||
// +----------------------------------------------------------------------+
|
||||
// | 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 |
|
||||
// | available at through the world-wide-web at |
|
||||
// | http://www.php.net/license/2_02.txt. |
|
||||
// | If you did not receive a copy of the PHP license and are unable to |
|
||||
// | obtain it through the world-wide-web, please send a note to |
|
||||
// | license@php.net so we can mail you a copy immediately. |
|
||||
// +----------------------------------------------------------------------+
|
||||
// | Authors: Chuck Hagenbuch <chuck@horde.org> |
|
||||
// | Jon Parise <jon@php.net> |
|
||||
// +----------------------------------------------------------------------+
|
||||
/**
|
||||
* SMTP implementation of the PEAR Mail interface. Requires the Net_SMTP class.
|
||||
*
|
||||
* PHP versions 4 and 5
|
||||
*
|
||||
* LICENSE:
|
||||
*
|
||||
* Copyright (c) 2010, Chuck Hagenbuch
|
||||
* All rights reserved.
|
||||
*
|
||||
* 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 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 */
|
||||
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.
|
||||
* @access public
|
||||
* @package Mail
|
||||
* @version $Revision: 1.33 $
|
||||
* @version $Revision: 294747 $
|
||||
*/
|
||||
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. */
|
||||
$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')) {
|
||||
$error = $this->_error('Failed to send data', $res);
|
||||
$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
|
||||
*
|
||||
* LICENSE: This source file is subject to version 3.0 of the PHP 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
|
||||
* the PHP License and are unable to obtain it through the web, please
|
||||
* send a note to license@php.net so we can mail you a copy immediately.
|
||||
* LICENSE:
|
||||
*
|
||||
* Copyright (c) 2010, gERD Schaufelberger
|
||||
* All rights reserved.
|
||||
*
|
||||
* 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
|
||||
* @package Mail_smtpmx
|
||||
* @author gERD Schaufelberger <gerd@php-tools.net>
|
||||
* @copyright 1997-2005 The PHP Group
|
||||
* @license http://www.php.net/license/3_0.txt PHP License 3.0
|
||||
* @version CVS: $Id: smtpmx.php,v 1.2 2007/10/06 17:00:00 chagenbu Exp $
|
||||
* @see Mail
|
||||
* @copyright 2010 gERD Schaufelberger
|
||||
* @license http://opensource.org/licenses/bsd-license.php New BSD License
|
||||
* @version CVS: $Id: smtpmx.php 294747 2010-02-08 08:18:33Z clockwerx $
|
||||
* @link http://pear.php.net/package/Mail/
|
||||
*/
|
||||
|
||||
require_once 'Net/SMTP.php';
|
||||
@ -32,7 +56,7 @@ require_once 'Net/SMTP.php';
|
||||
* @access public
|
||||
* @author gERD Schaufelberger <gerd@php-tools.net>
|
||||
* @package Mail
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 294747 $
|
||||
*/
|
||||
class Mail_smtpmx extends Mail {
|
||||
|
||||
|
@ -171,7 +171,7 @@ class XMPPHP_XMPP extends XMPPHP_XMLStream {
|
||||
$body = htmlspecialchars($body);
|
||||
$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>";
|
||||
$out .= "<body>$body</body>";
|
||||
if($payload) $out .= $payload;
|
||||
@ -194,7 +194,7 @@ class XMPPHP_XMPP extends XMPPHP_XMLStream {
|
||||
if($show == 'unavailable') $type = 'unavailable';
|
||||
|
||||
$out = "<presence";
|
||||
if($to) $out .= " to='$to'";
|
||||
if($to) $out .= " to=\"$to\"";
|
||||
if($type) $out .= " type='$type'";
|
||||
if($show == 'available' and !$status) {
|
||||
$out .= "/>";
|
||||
|
@ -9,12 +9,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-24 14:16+0000\n"
|
||||
"PO-Revision-Date: 2010-04-26 22:16:02+0000\n"
|
||||
"POT-Creation-Date: 2010-04-29 23:21+0000\n"
|
||||
"PO-Revision-Date: 2010-04-29 23:22:00+0000\n"
|
||||
"Language-Team: Arabic\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: ar\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -1227,7 +1227,7 @@ msgstr "الوصف مطلوب."
|
||||
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
msgstr "المسار المصدر طويل جدًا."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
msgid "Source URL is not valid."
|
||||
@ -2008,15 +2008,13 @@ msgstr "هذا عنوان محادثة فورية خاطئ."
|
||||
|
||||
#. TRANS: Server error thrown on database error canceling IM address confirmation.
|
||||
#: actions/imsettings.php:397
|
||||
#, fuzzy
|
||||
msgid "Couldn't delete IM confirmation."
|
||||
msgstr "تعذّر حذف تأكيد البريد الإلكتروني."
|
||||
msgstr "تعذّر حذف تأكيد البريد المراسلة الفورية."
|
||||
|
||||
#. TRANS: Message given after successfully canceling IM address confirmation.
|
||||
#: actions/imsettings.php:402
|
||||
#, fuzzy
|
||||
msgid "IM confirmation cancelled."
|
||||
msgstr "أُلغي التأكيد."
|
||||
msgstr "أُلغي تأكيد المراسلة الفورية."
|
||||
|
||||
#. TRANS: Message given trying to remove an IM address that is not
|
||||
#. TRANS: registered for the active user.
|
||||
@ -2026,9 +2024,8 @@ msgstr "هذه ليست هويتك في جابر."
|
||||
|
||||
#. TRANS: Message given after successfully removing a registered IM address.
|
||||
#: actions/imsettings.php:447
|
||||
#, fuzzy
|
||||
msgid "The IM address was removed."
|
||||
msgstr "أزيل هذا العنوان."
|
||||
msgstr "أزيل عنوان المراسلة الفورية هذا."
|
||||
|
||||
#: actions/inbox.php:59
|
||||
#, php-format
|
||||
@ -2046,7 +2043,7 @@ msgstr "هذا صندوق بريدك الوارد، والذي يسرد رسائ
|
||||
|
||||
#: actions/invite.php:39
|
||||
msgid "Invites have been disabled."
|
||||
msgstr ""
|
||||
msgstr "تم تعطيل الدعوات."
|
||||
|
||||
#: actions/invite.php:41
|
||||
#, fuzzy, php-format
|
||||
@ -2258,9 +2255,8 @@ msgid "Can't make %1$s an admin for group %2$s."
|
||||
msgstr "لم يمكن جعل %1$s إداريا للمجموعة %2$s."
|
||||
|
||||
#: actions/microsummary.php:69
|
||||
#, fuzzy
|
||||
msgid "No current status."
|
||||
msgstr "لا حالة حالية"
|
||||
msgstr "لا حالة جارية."
|
||||
|
||||
#: actions/newapplication.php:52
|
||||
msgid "New Application"
|
||||
@ -2603,24 +2599,24 @@ msgid "Path and server settings for this StatusNet site."
|
||||
msgstr ""
|
||||
|
||||
#: actions/pathsadminpanel.php:157
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Theme directory not readable: %s."
|
||||
msgstr "لا يمكن قراءة دليل السمات: %s"
|
||||
msgstr "لا يمكن قراءة دليل السمات: %s."
|
||||
|
||||
#: actions/pathsadminpanel.php:163
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Avatar directory not writable: %s."
|
||||
msgstr "لا يمكن الكتابة في دليل الأفتارات: %s"
|
||||
msgstr "لا يمكن الكتابة في دليل الأفتارات: %s."
|
||||
|
||||
#: actions/pathsadminpanel.php:169
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Background directory not writable: %s."
|
||||
msgstr "لا يمكن الكتابة في دليل الخلفيات: %s"
|
||||
msgstr "لا يمكن الكتابة في دليل الخلفيات: %s."
|
||||
|
||||
#: actions/pathsadminpanel.php:177
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Locales directory not readable: %s."
|
||||
msgstr "لا يمكن قراءة دليل المحليات: %s"
|
||||
msgstr "لا يمكن قراءة دليل المحليات: %s."
|
||||
|
||||
#: actions/pathsadminpanel.php:183
|
||||
msgid "Invalid SSL server. The maximum length is 255 characters."
|
||||
@ -2760,9 +2756,9 @@ msgid "People search"
|
||||
msgstr "بحث في الأشخاص"
|
||||
|
||||
#: actions/peopletag.php:68
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Not a valid people tag: %s."
|
||||
msgstr "ليس وسم أشخاص صالح: %s"
|
||||
msgstr "ليس وسم أشخاص صالح: %s."
|
||||
|
||||
#: actions/peopletag.php:142
|
||||
#, php-format
|
||||
@ -2770,9 +2766,8 @@ msgid "Users self-tagged with %1$s - page %2$d"
|
||||
msgstr "المستخدمون الذين وسموا أنفسهم ب%1$s - الصفحة %2$d"
|
||||
|
||||
#: actions/postnotice.php:95
|
||||
#, fuzzy
|
||||
msgid "Invalid notice content."
|
||||
msgstr "محتوى إشعار غير صالح"
|
||||
msgstr "محتوى إشعار غير صالح."
|
||||
|
||||
#: actions/postnotice.php:101
|
||||
#, php-format
|
||||
@ -2913,9 +2908,9 @@ msgid "Settings saved."
|
||||
msgstr "حُفظت الإعدادات."
|
||||
|
||||
#: actions/public.php:83
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Beyond the page limit (%s)."
|
||||
msgstr "وراء حد الصفحة (%s)"
|
||||
msgstr "بعد حد الصفحة (%s)."
|
||||
|
||||
#: actions/public.php:92
|
||||
msgid "Could not retrieve public stream."
|
||||
@ -3385,9 +3380,8 @@ msgid "Sessions"
|
||||
msgstr "الجلسات"
|
||||
|
||||
#: actions/sessionsadminpanel.php:65
|
||||
#, fuzzy
|
||||
msgid "Session settings for this StatusNet site."
|
||||
msgstr "الإعدادات الأساسية لموقع StatusNet هذا."
|
||||
msgstr "إعدادات جلسة موقع StatusNet هذا."
|
||||
|
||||
#: actions/sessionsadminpanel.php:175
|
||||
msgid "Handle sessions"
|
||||
@ -4641,7 +4635,7 @@ msgstr "مشكلة أثناء حفظ الإشعار."
|
||||
|
||||
#. 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.
|
||||
#: classes/Notice.php:1535
|
||||
#: classes/Notice.php:1533
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "آر تي @%1$s %2$s"
|
||||
@ -5002,7 +4996,7 @@ msgid "Before"
|
||||
msgstr "قبل"
|
||||
|
||||
#. 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."
|
||||
msgstr ""
|
||||
|
||||
@ -5010,11 +5004,11 @@ msgstr ""
|
||||
msgid "Can't handle remote content yet."
|
||||
msgstr ""
|
||||
|
||||
#: lib/activityutils.php:236
|
||||
#: lib/activityutils.php:244
|
||||
msgid "Can't handle embedded XML content yet."
|
||||
msgstr ""
|
||||
|
||||
#: lib/activityutils.php:240
|
||||
#: lib/activityutils.php:248
|
||||
msgid "Can't handle embedded Base64 content yet."
|
||||
msgstr ""
|
||||
|
||||
@ -6318,7 +6312,7 @@ msgstr "رسائلك المُرسلة"
|
||||
msgid "Tags in %s's notices"
|
||||
msgstr "وسوم في إشعارات %s"
|
||||
|
||||
#: lib/plugin.php:114
|
||||
#: lib/plugin.php:115
|
||||
msgid "Unknown"
|
||||
msgstr "غير معروفة"
|
||||
|
||||
|
@ -15,12 +15,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-24 14:16+0000\n"
|
||||
"PO-Revision-Date: 2010-04-26 22:16:22+0000\n"
|
||||
"POT-Creation-Date: 2010-04-29 23:21+0000\n"
|
||||
"PO-Revision-Date: 2010-04-29 23:22:18+0000\n"
|
||||
"Language-Team: German\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: de\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3316,13 +3316,12 @@ msgid "Invalid username or password."
|
||||
msgstr "Benutzername oder Passwort falsch."
|
||||
|
||||
#: actions/register.php:343
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"With this form you can create a new account. You can then post notices and "
|
||||
"link up to friends and colleagues. "
|
||||
msgstr ""
|
||||
"Hier kannst du einen neuen Zugang einrichten. Danach kannst du Nachrichten "
|
||||
"und Links an deine Freunde und Kollegen schicken. "
|
||||
"Hier kannst du einen neuen Zugang einrichten. Anschließend kannst du "
|
||||
"Nachrichten und Links mit deinen Freunden und Kollegen teilen. "
|
||||
|
||||
#: actions/register.php:425
|
||||
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"
|
||||
|
||||
#: actions/register.php:494
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid ""
|
||||
"My text and files are available under %s except this private data: password, "
|
||||
"email address, IM address, and phone number."
|
||||
msgstr ""
|
||||
"außer folgende private Daten: Passwort, E-Mail-Adresse, IM-Adresse und "
|
||||
"Telefonnummer."
|
||||
"Abgesehen von folgenden Daten: Passwort, Email Adresse, IM Adresse und "
|
||||
"Telefonnummer, sind all meine Texte und Dateien unter %s verfügbar."
|
||||
|
||||
#: actions/register.php:542
|
||||
#, 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: %1$s is the repeated user's name, %2$s is the repeated notice.
|
||||
#: classes/Notice.php:1535
|
||||
#: classes/Notice.php:1533
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "RT @%1$s %2$s"
|
||||
@ -5260,7 +5259,7 @@ msgid "Before"
|
||||
msgstr "Vorher"
|
||||
|
||||
#. 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."
|
||||
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."
|
||||
msgstr "Fremdinhalt kann noch nicht eingebunden werden."
|
||||
|
||||
#: lib/activityutils.php:236
|
||||
#: lib/activityutils.php:244
|
||||
msgid "Can't handle embedded XML content yet."
|
||||
msgstr "Kann eingebundenen XML Inhalt nicht verarbeiten."
|
||||
|
||||
#: lib/activityutils.php:240
|
||||
#: lib/activityutils.php:248
|
||||
msgid "Can't handle embedded Base64 content yet."
|
||||
msgstr "Eingebundener Base64 Inhalt kann noch nicht verarbeitet werden."
|
||||
|
||||
@ -6657,7 +6656,7 @@ msgstr "Deine gesendeten Nachrichten"
|
||||
msgid "Tags in %s's notices"
|
||||
msgstr "Stichworte in %ss Nachrichten"
|
||||
|
||||
#: lib/plugin.php:114
|
||||
#: lib/plugin.php:115
|
||||
msgid "Unknown"
|
||||
msgstr "Unbekannter Befehl"
|
||||
|
||||
|
@ -9,12 +9,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-24 14:16+0000\n"
|
||||
"PO-Revision-Date: 2010-04-26 22:17:07+0000\n"
|
||||
"POT-Creation-Date: 2010-04-29 23:21+0000\n"
|
||||
"PO-Revision-Date: 2010-04-29 23:22:44+0000\n"
|
||||
"Language-Team: Galician\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: gl\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: %1$s is the repeated user's name, %2$s is the repeated notice.
|
||||
#: classes/Notice.php:1535
|
||||
#: classes/Notice.php:1533
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "♻ @%1$s %2$s"
|
||||
@ -5242,7 +5242,7 @@ msgid "Before"
|
||||
msgstr "Anteriores"
|
||||
|
||||
#. 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."
|
||||
msgstr ""
|
||||
"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."
|
||||
msgstr "Aínda non é posible manexar contidos remotos."
|
||||
|
||||
#: lib/activityutils.php:236
|
||||
#: lib/activityutils.php:244
|
||||
msgid "Can't handle embedded XML content yet."
|
||||
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."
|
||||
msgstr "Aínda non se poden manexar contidos Base64."
|
||||
|
||||
@ -5793,8 +5793,8 @@ msgstr ""
|
||||
"get <alcume> - obter a última nota 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"
|
||||
"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 <alcume> - marcar como \"favorita\" a última nota do usuario\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 <alcume> - repetir a última nota do usuario\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"
|
||||
"drop <grupo> - deixar o grupo indicado\n"
|
||||
"stats - obter as súas estatísticas\n"
|
||||
"stop - idéntico a “off”\n"
|
||||
"quit - idéntico a “off”\n"
|
||||
"sub <alcume> - idéntico a “follow”\n"
|
||||
"unsub <alcume> - idéntico a “leave”\n"
|
||||
"last <alcume> - idéntico a “get”\n"
|
||||
"stop - idéntico a \"off\"\n"
|
||||
"quit - idéntico a \"off\"\n"
|
||||
"sub <alcume> - idéntico a \"follow\"\n"
|
||||
"unsub <alcume> - idéntico a \"leave\"\n"
|
||||
"last <alcume> - idéntico a \"get\"\n"
|
||||
"on <alcume> - aínda non se integrou\n"
|
||||
"off <alcume> - aínda non se integrou\n"
|
||||
"nudge <alcume> - facerlle un aceno ao usuario indicado\n"
|
||||
@ -5841,7 +5841,7 @@ msgstr "MI"
|
||||
|
||||
#: lib/connectsettingsaction.php:111
|
||||
msgid "Updates by instant messenger (IM)"
|
||||
msgstr ""
|
||||
msgstr "Actualizacións por mensaxería instantánea (MI)"
|
||||
|
||||
#: lib/connectsettingsaction.php:116
|
||||
msgid "Updates by SMS"
|
||||
@ -5868,7 +5868,7 @@ msgid ""
|
||||
"You can upload your personal background image. The maximum file size is 2MB."
|
||||
msgstr ""
|
||||
"Pode cargar a súa imaxe de fondo persoal. O ficheiro non pode ocupar máis de "
|
||||
"2 MiB."
|
||||
"2MB."
|
||||
|
||||
#: lib/designsettings.php:418
|
||||
msgid "Design defaults restored."
|
||||
@ -5900,7 +5900,7 @@ msgstr "Atom"
|
||||
|
||||
#: lib/feed.php:91
|
||||
msgid "FOAF"
|
||||
msgstr "FOAF"
|
||||
msgstr "Amigo dun amigo"
|
||||
|
||||
#: lib/feedlist.php:64
|
||||
msgid "Export data"
|
||||
@ -5908,7 +5908,7 @@ msgstr "Exportar os datos"
|
||||
|
||||
#: lib/galleryaction.php:121
|
||||
msgid "Filter tags"
|
||||
msgstr "Filtrar etiquetas"
|
||||
msgstr "Filtrar as etiquetas"
|
||||
|
||||
#: lib/galleryaction.php:131
|
||||
msgid "All"
|
||||
@ -5933,7 +5933,7 @@ msgstr "Continuar"
|
||||
#: lib/grantroleform.php:91
|
||||
#, php-format
|
||||
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
|
||||
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 ""
|
||||
"Location for the group, if any, like \"City, State (or Region), Country\""
|
||||
msgstr ""
|
||||
"Localidade do grupo, e a ten, como por exemplo «Cidade, Provincia, "
|
||||
"Comunidade, País»."
|
||||
"Localidade do grupo, se a ten, como por exemplo \"Cidade, Provincia, "
|
||||
"Comunidade, País\""
|
||||
|
||||
#: lib/groupeditform.php:187
|
||||
#, php-format
|
||||
@ -6043,11 +6043,11 @@ msgstr "Non se coñece o tipo de ficheiro"
|
||||
|
||||
#: lib/imagefile.php:244
|
||||
msgid "MB"
|
||||
msgstr "MiB"
|
||||
msgstr "MB"
|
||||
|
||||
#: lib/imagefile.php:246
|
||||
msgid "kB"
|
||||
msgstr "KiB"
|
||||
msgstr "kB"
|
||||
|
||||
#: lib/jabber.php:387
|
||||
#, php-format
|
||||
@ -6264,7 +6264,7 @@ msgstr ""
|
||||
"\n"
|
||||
"%4$s\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"
|
||||
"Atentamente,\n"
|
||||
"%5$s\n"
|
||||
@ -6322,7 +6322,7 @@ msgid ""
|
||||
"\n"
|
||||
"\t%s"
|
||||
msgstr ""
|
||||
"Pode ler a conversación completa en:\n"
|
||||
"Pode ler a conversa completa en:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
@ -6358,7 +6358,7 @@ msgid ""
|
||||
"\n"
|
||||
"P.S. You can turn off these email notifications here: %8$s\n"
|
||||
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"
|
||||
"\n"
|
||||
"A nota está en:\n"
|
||||
@ -6373,14 +6373,14 @@ msgstr ""
|
||||
"\n"
|
||||
"%6$s\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"
|
||||
"%7$s\n"
|
||||
"\n"
|
||||
"Atentamente,\n"
|
||||
"%2$s\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
|
||||
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
|
||||
#, php-format
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "File upload stopped by extension."
|
||||
@ -6480,7 +6480,7 @@ msgstr "Enviar unha nota directa"
|
||||
|
||||
#: lib/messageform.php:146
|
||||
msgid "To"
|
||||
msgstr "a"
|
||||
msgstr "A"
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
msgid "Available characters"
|
||||
@ -6522,7 +6522,7 @@ msgid ""
|
||||
"try again later"
|
||||
msgstr ""
|
||||
"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
|
||||
#: lib/noticelist.php:430
|
||||
@ -6547,7 +6547,7 @@ msgstr "O"
|
||||
#: lib/noticelist.php:438
|
||||
#, php-format
|
||||
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
|
||||
msgid "at"
|
||||
@ -6642,7 +6642,7 @@ msgstr "As mensaxes enviadas"
|
||||
msgid "Tags in %s's notices"
|
||||
msgstr "Etiquetas nas notas de %s"
|
||||
|
||||
#: lib/plugin.php:114
|
||||
#: lib/plugin.php:115
|
||||
msgid "Unknown"
|
||||
msgstr "Descoñecida"
|
||||
|
||||
@ -6705,11 +6705,11 @@ msgstr "Populares"
|
||||
|
||||
#: lib/redirectingaction.php:94
|
||||
msgid "No return-to arguments."
|
||||
msgstr "Sen argumentos “return-to”."
|
||||
msgstr "Sen argumentos \"return-to\"."
|
||||
|
||||
#: lib/repeatform.php:107
|
||||
msgid "Repeat this notice?"
|
||||
msgstr "Quere repetir esta nova?"
|
||||
msgstr "Quere repetir esta nota?"
|
||||
|
||||
#: lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
@ -6717,12 +6717,12 @@ msgstr "Si"
|
||||
|
||||
#: lib/repeatform.php:132
|
||||
msgid "Repeat this notice"
|
||||
msgstr "Repetir esta nova"
|
||||
msgstr "Repetir esta nota"
|
||||
|
||||
#: lib/revokeroleform.php:91
|
||||
#, php-format
|
||||
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
|
||||
msgid "No single user defined for single-user mode."
|
||||
@ -6806,7 +6806,7 @@ msgstr "Convidar"
|
||||
#: lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
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/subscriptionspeopleselftagcloudsection.php:48
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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: %1$s is the repeated user's name, %2$s is the repeated notice.
|
||||
#: classes/Notice.php:1535
|
||||
#: classes/Notice.php:1533
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr ""
|
||||
@ -4927,7 +4927,7 @@ msgid "Before"
|
||||
msgstr ""
|
||||
|
||||
#. 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."
|
||||
msgstr ""
|
||||
|
||||
@ -4935,11 +4935,11 @@ msgstr ""
|
||||
msgid "Can't handle remote content yet."
|
||||
msgstr ""
|
||||
|
||||
#: lib/activityutils.php:236
|
||||
#: lib/activityutils.php:244
|
||||
msgid "Can't handle embedded XML content yet."
|
||||
msgstr ""
|
||||
|
||||
#: lib/activityutils.php:240
|
||||
#: lib/activityutils.php:248
|
||||
msgid "Can't handle embedded Base64 content yet."
|
||||
msgstr ""
|
||||
|
||||
@ -6166,7 +6166,7 @@ msgstr ""
|
||||
msgid "Tags in %s's notices"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin.php:114
|
||||
#: lib/plugin.php:115
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
|
@ -9,12 +9,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-24 14:16+0000\n"
|
||||
"PO-Revision-Date: 2010-04-26 22:18:38+0000\n"
|
||||
"POT-Creation-Date: 2010-04-29 23:21+0000\n"
|
||||
"PO-Revision-Date: 2010-04-29 23:23:35+0000\n"
|
||||
"Language-Team: Telugu\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: te\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -2113,6 +2113,8 @@ msgid ""
|
||||
"You will be notified when your invitees accept the invitation and register "
|
||||
"on the site. Thanks for growing the community!"
|
||||
msgstr ""
|
||||
"ఆహ్వానితులు మీ ఆహ్వానాన్ని అంగీకరించి సైటులో నమోదైనప్పుడు మీకు తెలియజేస్తాము. ఇక్కడి ప్రజని "
|
||||
"పెంచుతున్నందుకు ధన్యవాదాలు!"
|
||||
|
||||
#: actions/invite.php:162
|
||||
msgid ""
|
||||
@ -2450,7 +2452,7 @@ msgstr "మీరు నమోదు చేసివున్న ఉపకరణ
|
||||
#: actions/oauthappssettings.php:135
|
||||
#, php-format
|
||||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
msgstr "మీరు ఇంకా ఏ ఉపకరణాన్నీ నమోదు చేసుకోలేదు."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
@ -2471,7 +2473,7 @@ msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
msgstr "మీ ఖాతాని ఉపయోగించుకోడానికి మీరు ఏ ఉపకరణాన్నీ అధీకరించలేదు."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
@ -3907,7 +3909,7 @@ msgstr "అప్రమేయ భాష"
|
||||
|
||||
#: actions/siteadminpanel.php:263
|
||||
msgid "Site language when autodetection from browser settings is not available"
|
||||
msgstr ""
|
||||
msgstr "విహారిణి అమరికల నుండి భాషని స్వయంచాలకంగా పొందలేకపోయినప్పుడు ఉపయోగించే సైటు భాష"
|
||||
|
||||
#: actions/siteadminpanel.php:271
|
||||
msgid "Limits"
|
||||
@ -3927,7 +3929,7 @@ msgstr ""
|
||||
|
||||
#: actions/siteadminpanel.php:278
|
||||
msgid "How long users must wait (in seconds) to post the same thing again."
|
||||
msgstr ""
|
||||
msgstr "అదే విషయాన్ని మళ్ళీ టపా చేయడానికి వాడుకరులు ఎంత సమయం (క్షణాల్లో) వేచివుండాలి."
|
||||
|
||||
#: actions/sitenoticeadminpanel.php:56
|
||||
msgid "Site Notice"
|
||||
@ -4234,6 +4236,8 @@ msgid ""
|
||||
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
|
||||
"%) and be the first?"
|
||||
msgstr ""
|
||||
"%sకి చందాదార్లు ఎవరూ లేరు. [ఒక ఖాతాని నమోదు చేసుకుని](%%%%action.register%%%%) మీరు "
|
||||
"ఎందుకు మొదటి చందాదారు కాకూడదు?"
|
||||
|
||||
#: actions/subscriptions.php:52
|
||||
#, php-format
|
||||
@ -4247,12 +4251,12 @@ msgstr "%1$s చందాలు, పేజీ %2$d"
|
||||
|
||||
#: actions/subscriptions.php:65
|
||||
msgid "These are the people whose notices you listen to."
|
||||
msgstr ""
|
||||
msgstr "మీరు ఈ వ్యక్తుల నోటీసులని వింటున్నారు."
|
||||
|
||||
#: actions/subscriptions.php:69
|
||||
#, php-format
|
||||
msgid "These are the people whose notices %s listens to."
|
||||
msgstr ""
|
||||
msgstr "%s వీరి నోటీసులని వింటున్నారు."
|
||||
|
||||
#: actions/subscriptions.php:126
|
||||
#, php-format
|
||||
@ -4729,7 +4733,7 @@ msgstr "సందేశాన్ని భద్రపరచడంలో పొ
|
||||
|
||||
#. 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.
|
||||
#: classes/Notice.php:1535
|
||||
#: classes/Notice.php:1533
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "RT @%1$s %2$s"
|
||||
@ -5096,7 +5100,7 @@ msgid "Before"
|
||||
msgstr "ఇంతక్రితం"
|
||||
|
||||
#. 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."
|
||||
msgstr ""
|
||||
|
||||
@ -5104,11 +5108,11 @@ msgstr ""
|
||||
msgid "Can't handle remote content yet."
|
||||
msgstr ""
|
||||
|
||||
#: lib/activityutils.php:236
|
||||
#: lib/activityutils.php:244
|
||||
msgid "Can't handle embedded XML content yet."
|
||||
msgstr ""
|
||||
|
||||
#: lib/activityutils.php:240
|
||||
#: lib/activityutils.php:248
|
||||
msgid "Can't handle embedded Base64 content yet."
|
||||
msgstr ""
|
||||
|
||||
@ -5465,9 +5469,9 @@ msgstr ""
|
||||
#. 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.
|
||||
#: lib/command.php:472
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
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: %s is the name of the other user.
|
||||
@ -6452,7 +6456,7 @@ msgstr "మీరు పంపిన సందేశాలు"
|
||||
msgid "Tags in %s's notices"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin.php:114
|
||||
#: lib/plugin.php:115
|
||||
msgid "Unknown"
|
||||
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 ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -16,201 +16,6 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=CHARSET\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
|
||||
#, php-format
|
||||
msgid ""
|
||||
@ -258,85 +63,180 @@ msgstr ""
|
||||
msgid "Facebook Account Setup"
|
||||
msgstr ""
|
||||
|
||||
#: FBConnectAuth.php:153
|
||||
#: FBConnectAuth.php:158
|
||||
msgid "Connection options"
|
||||
msgstr ""
|
||||
|
||||
#: FBConnectAuth.php:162
|
||||
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
|
||||
#: FBConnectAuth.php:183
|
||||
msgid "Create new account"
|
||||
msgstr ""
|
||||
|
||||
#: FBConnectAuth.php:175
|
||||
#: FBConnectAuth.php:185
|
||||
msgid "Create a new user with this nickname."
|
||||
msgstr ""
|
||||
|
||||
#: FBConnectAuth.php:178
|
||||
#: FBConnectAuth.php:188
|
||||
msgid "New nickname"
|
||||
msgstr ""
|
||||
|
||||
#: FBConnectAuth.php:180
|
||||
#: FBConnectAuth.php:190
|
||||
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
|
||||
msgstr ""
|
||||
|
||||
#: FBConnectAuth.php:183
|
||||
#: FBConnectAuth.php:193
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
#: FBConnectAuth.php:188
|
||||
#: FBConnectAuth.php:198
|
||||
msgid "Connect existing account"
|
||||
msgstr ""
|
||||
|
||||
#: FBConnectAuth.php:190
|
||||
#: FBConnectAuth.php:200
|
||||
msgid ""
|
||||
"If you already have an account, login with your username and password to "
|
||||
"connect it to your Facebook."
|
||||
msgstr ""
|
||||
|
||||
#: FBConnectAuth.php:193
|
||||
#: FBConnectAuth.php:203
|
||||
msgid "Existing nickname"
|
||||
msgstr ""
|
||||
|
||||
#: FBConnectAuth.php:199
|
||||
#: FBConnectAuth.php:206 facebookaction.php:271
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: FBConnectAuth.php:209
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: FBConnectAuth.php:215 FBConnectAuth.php:224
|
||||
#: FBConnectAuth.php:225 FBConnectAuth.php:234
|
||||
msgid "Registration not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: FBConnectAuth.php:231
|
||||
#: FBConnectAuth.php:241
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr ""
|
||||
|
||||
#: FBConnectAuth.php:241
|
||||
#: FBConnectAuth.php:251
|
||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||
msgstr ""
|
||||
|
||||
#: FBConnectAuth.php:246
|
||||
#: FBConnectAuth.php:256
|
||||
msgid "Nickname not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: FBConnectAuth.php:251
|
||||
#: FBConnectAuth.php:261
|
||||
msgid "Nickname already in use. Try another one."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: FBConnectAuth.php:289
|
||||
#: FBConnectAuth.php:299
|
||||
msgid "Invalid username or password."
|
||||
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
|
||||
msgid "Already logged in."
|
||||
msgstr ""
|
||||
@ -349,6 +249,90 @@ msgstr ""
|
||||
msgid "Facebook Login"
|
||||
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
|
||||
msgid "Manage how your account connects to Facebook"
|
||||
msgstr ""
|
||||
@ -393,3 +377,47 @@ msgstr ""
|
||||
#: FBConnectSettings.php:197
|
||||
msgid "Not sure what you're trying to do."
|
||||
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 ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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 ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -16,24 +16,6 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=CHARSET\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
|
||||
msgid "Map"
|
||||
msgstr ""
|
||||
@ -48,6 +30,24 @@ msgid ""
|
||||
"mapstraction.com/\">Mapstraction</a> JavaScript library."
|
||||
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
|
||||
#, php-format
|
||||
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 ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -16,197 +16,80 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: actions/groupsalmon.php:51
|
||||
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
|
||||
#: OStatusPlugin.php:210 OStatusPlugin.php:913 actions/ostatusinit.php:99
|
||||
msgid "Subscribe"
|
||||
msgstr ""
|
||||
|
||||
#: actions/ostatusinit.php:128
|
||||
msgid "Must provide a remote profile."
|
||||
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
|
||||
#: OStatusPlugin.php:228 OStatusPlugin.php:635 actions/ostatussub.php:105
|
||||
#: actions/ostatusinit.php:96
|
||||
msgid "Join"
|
||||
msgstr ""
|
||||
|
||||
#: actions/ostatussub.php:113
|
||||
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
|
||||
#: OStatusPlugin.php:451
|
||||
#, php-format
|
||||
msgid "Bad feed URL: %s %s"
|
||||
msgid "Sent from %s via OStatus"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: OStatus remote group subscription dialog error.
|
||||
#: actions/ostatussub.php:336
|
||||
msgid "Already a member!"
|
||||
#: OStatusPlugin.php:503
|
||||
msgid "Could not set up remote subscription."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: OStatus remote group subscription dialog error.
|
||||
#: actions/ostatussub.php:346
|
||||
msgid "Remote group join failed!"
|
||||
#: OStatusPlugin.php:619
|
||||
msgid "Could not set up remote group membership."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: OStatus remote group subscription dialog error.
|
||||
#: actions/ostatussub.php:350
|
||||
msgid "Remote group join aborted!"
|
||||
#: OStatusPlugin.php:636
|
||||
#, php-format
|
||||
msgid "%s has joined group %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: OStatus remote subscription dialog error.
|
||||
#: actions/ostatussub.php:356
|
||||
msgid "Already subscribed!"
|
||||
#: OStatusPlugin.php:644
|
||||
msgid "Failed joining remote group."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: OStatus remote subscription dialog error.
|
||||
#: actions/ostatussub.php:361
|
||||
msgid "Remote subscription failed!"
|
||||
#: OStatusPlugin.php:684
|
||||
msgid "Leave"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Page title for OStatus remote subscription form
|
||||
#: actions/ostatussub.php:459
|
||||
msgid "Authorize subscription"
|
||||
#: OStatusPlugin.php:685
|
||||
#, php-format
|
||||
msgid "%s has left group %s."
|
||||
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 ""
|
||||
"You can subscribe to users from other supported sites. Paste their address "
|
||||
"or profile URI below:"
|
||||
"Follow people across social networks that implement <a href=\"http://ostatus."
|
||||
"org/\">OStatus</a>."
|
||||
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
|
||||
msgid "Tried to update avatar for unsaved remote profile %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Ostatus_profile.php:797
|
||||
#: classes/Ostatus_profile.php:1022
|
||||
#, php-format
|
||||
msgid "Unable to fetch avatar from %s"
|
||||
msgstr ""
|
||||
@ -263,50 +146,186 @@ msgstr ""
|
||||
msgid "This target doesn't understand leave events."
|
||||
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
|
||||
msgid "Feeds"
|
||||
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()) {
|
||||
// TRANS: Tooltip for main menu option "Login"
|
||||
$tooltip = _m('TOOLTIP', 'Login to the site');
|
||||
// TRANS: Main menu option when not logged in to log in
|
||||
$action->menuItem(common_local_url('openidlogin'),
|
||||
// TRANS: Main menu option when not logged in to log in
|
||||
_m('MENU', 'Login'),
|
||||
$tooltip,
|
||||
false,
|
||||
'nav_login');
|
||||
// TRANS: Tooltip for main menu option "Help"
|
||||
$tooltip = _m('TOOLTIP', 'Help me!');
|
||||
// TRANS: Main menu option for help on the StatusNet site
|
||||
$action->menuItem(common_local_url('doc', array('title' => 'help')),
|
||||
// TRANS: Main menu option for help on the StatusNet site
|
||||
_m('MENU', 'Help'),
|
||||
$tooltip,
|
||||
false,
|
||||
@ -219,8 +219,8 @@ class OpenIDPlugin extends Plugin
|
||||
if (!common_config('site', 'private')) {
|
||||
// TRANS: Tooltip for main menu option "Search"
|
||||
$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'),
|
||||
// TRANS: Main menu option when logged in or when the StatusNet instance is not private
|
||||
_m('MENU', 'Search'), $tooltip, false, 'nav_search');
|
||||
}
|
||||
Event::handle('EndPrimaryNav', array($action));
|
||||
@ -280,7 +280,9 @@ class OpenIDPlugin extends Plugin
|
||||
$action_name = $action->trimmed('action');
|
||||
|
||||
$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'),
|
||||
$action_name === 'openidlogin');
|
||||
}
|
||||
@ -316,7 +318,9 @@ class OpenIDPlugin extends Plugin
|
||||
$action_name = $action->trimmed('action');
|
||||
|
||||
$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'),
|
||||
$action_name === 'openidsettings');
|
||||
|
||||
@ -592,6 +596,7 @@ class OpenIDPlugin extends Plugin
|
||||
'author' => 'Evan Prodromou, Craig Andrews',
|
||||
'homepage' => 'http://status.net/wiki/Plugin:OpenID',
|
||||
'rawdescription' =>
|
||||
// TRANS: OpenID plugin description.
|
||||
_m('Use <a href="http://openid.net/">OpenID</a> to login to the site.'));
|
||||
return true;
|
||||
}
|
||||
|
@ -64,6 +64,7 @@ class FinishaddopenidAction extends Action
|
||||
{
|
||||
parent::handle($args);
|
||||
if (!common_logged_in()) {
|
||||
// TRANS: Client error message
|
||||
$this->clientError(_m('Not logged in.'));
|
||||
} else {
|
||||
$this->tryLogin();
|
||||
@ -85,10 +86,12 @@ class FinishaddopenidAction extends Action
|
||||
$response = $consumer->complete(common_local_url('finishaddopenid'));
|
||||
|
||||
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.'));
|
||||
return;
|
||||
} 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'),
|
||||
$response->message));
|
||||
} else if ($response->status == Auth_OpenID_SUCCESS) {
|
||||
@ -109,8 +112,10 @@ class FinishaddopenidAction extends Action
|
||||
|
||||
if ($other) {
|
||||
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!'));
|
||||
} 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.'));
|
||||
}
|
||||
return;
|
||||
@ -123,11 +128,13 @@ class FinishaddopenidAction extends Action
|
||||
$result = oid_link_user($cur->id, $canonical, $display);
|
||||
|
||||
if (!$result) {
|
||||
// TRANS: message in case the OpenID object cannot be connected to the user.
|
||||
$this->message(_m('Error connecting user.'));
|
||||
return;
|
||||
}
|
||||
if ($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'));
|
||||
return;
|
||||
}
|
||||
@ -167,6 +174,7 @@ class FinishaddopenidAction extends Action
|
||||
|
||||
function title()
|
||||
{
|
||||
// TRANS: Title after getting the status of the OpenID authorisation request.
|
||||
return _m('OpenID Login');
|
||||
}
|
||||
|
||||
|
@ -31,15 +31,18 @@ class FinishopenidloginAction extends Action
|
||||
{
|
||||
parent::handle($args);
|
||||
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.'));
|
||||
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
||||
$token = $this->trimmed('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.'));
|
||||
return;
|
||||
}
|
||||
if ($this->arg('create')) {
|
||||
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->trimmed('newname'));
|
||||
return;
|
||||
@ -48,7 +51,8 @@ class FinishopenidloginAction extends Action
|
||||
} else if ($this->arg('connect')) {
|
||||
$this->connectUser();
|
||||
} 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'));
|
||||
}
|
||||
} else {
|
||||
@ -62,12 +66,15 @@ class FinishopenidloginAction extends Action
|
||||
$this->element('div', array('class' => 'error'), $this->error);
|
||||
} else {
|
||||
$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')));
|
||||
}
|
||||
}
|
||||
|
||||
function title()
|
||||
{
|
||||
// TRANS: Title
|
||||
return _m('OpenID Account Setup');
|
||||
}
|
||||
|
||||
@ -115,6 +122,8 @@ class FinishopenidloginAction extends Action
|
||||
'value' => 'true'));
|
||||
$this->elementStart('label', array('for' => 'license',
|
||||
'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 ' .
|
||||
'except this private data: password, ' .
|
||||
'email address, IM address, and phone number.');
|
||||
@ -127,23 +136,29 @@ class FinishopenidloginAction extends Action
|
||||
$this->elementEnd('label');
|
||||
$this->elementEnd('li');
|
||||
$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->elementStart('fieldset', array('id' => 'form_openid_createaccount'));
|
||||
$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'));
|
||||
$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.'));
|
||||
$this->elementStart('ul', 'form_data');
|
||||
$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->elementEnd('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->elementEnd('li');
|
||||
$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('form');
|
||||
}
|
||||
@ -155,10 +170,11 @@ class FinishopenidloginAction extends Action
|
||||
$response = $consumer->complete(common_local_url('finishopenidlogin'));
|
||||
|
||||
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.'));
|
||||
return;
|
||||
} 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));
|
||||
} else if ($response->status == Auth_OpenID_SUCCESS) {
|
||||
// This means the authentication succeeded; extract the
|
||||
@ -224,6 +240,7 @@ class FinishopenidloginAction extends Action
|
||||
# FIXME: save invite code before redirect, and check here
|
||||
|
||||
if (common_config('site', 'closed')) {
|
||||
// TRANS: OpenID plugin message. No new user registration is allowed on the site.
|
||||
$this->clientError(_m('Registration not allowed.'));
|
||||
return;
|
||||
}
|
||||
@ -233,6 +250,7 @@ class FinishopenidloginAction extends Action
|
||||
if (common_config('site', 'inviteonly')) {
|
||||
$code = $_SESSION['invitecode'];
|
||||
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.'));
|
||||
return;
|
||||
}
|
||||
@ -240,6 +258,7 @@ class FinishopenidloginAction extends Action
|
||||
$invite = Invitation::staticGet($code);
|
||||
|
||||
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.'));
|
||||
return;
|
||||
}
|
||||
@ -250,16 +269,19 @@ class FinishopenidloginAction extends Action
|
||||
if (!Validate::string($nickname, array('min_length' => 1,
|
||||
'max_length' => 64,
|
||||
'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.'));
|
||||
return;
|
||||
}
|
||||
|
||||
if (!User::allowed_nickname($nickname)) {
|
||||
// TRANS: OpenID plugin message. The entered new user name is blacklisted.
|
||||
$this->showForm(_m('Nickname not allowed.'));
|
||||
return;
|
||||
}
|
||||
|
||||
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.'));
|
||||
return;
|
||||
}
|
||||
@ -267,6 +289,7 @@ class FinishopenidloginAction extends Action
|
||||
list($display, $canonical, $sreg) = $this->getSavedValues();
|
||||
|
||||
if (!$display || !$canonical) {
|
||||
// TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved.
|
||||
$this->serverError(_m('Stored OpenID not found.'));
|
||||
return;
|
||||
}
|
||||
@ -276,6 +299,7 @@ class FinishopenidloginAction extends Action
|
||||
$other = oid_get_user($canonical);
|
||||
|
||||
if ($other) {
|
||||
// TRANS: OpenID plugin server error.
|
||||
$this->serverError(_m('Creating new account for OpenID that already has a user.'));
|
||||
return;
|
||||
}
|
||||
@ -336,6 +360,7 @@ class FinishopenidloginAction extends Action
|
||||
$password = $this->trimmed('password');
|
||||
|
||||
if (!common_check_user($nickname, $password)) {
|
||||
// TRANS: OpenID plugin message.
|
||||
$this->showForm(_m('Invalid username or password.'));
|
||||
return;
|
||||
}
|
||||
@ -347,6 +372,7 @@ class FinishopenidloginAction extends Action
|
||||
list($display, $canonical, $sreg) = $this->getSavedValues();
|
||||
|
||||
if (!$display || !$canonical) {
|
||||
// TRANS: OpenID plugin server error. A stored OpenID cannot be found.
|
||||
$this->serverError(_m('Stored OpenID not found.'));
|
||||
return;
|
||||
}
|
||||
@ -354,6 +380,7 @@ class FinishopenidloginAction extends Action
|
||||
$result = oid_link_user($user->id, $canonical, $display);
|
||||
|
||||
if (!$result) {
|
||||
// TRANS: OpenID plugin server error. The user or user profile could not be saved.
|
||||
$this->serverError(_m('Error connecting user to OpenID.'));
|
||||
return;
|
||||
}
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -16,256 +16,6 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=CHARSET\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
|
||||
msgid "OpenID settings"
|
||||
msgstr ""
|
||||
@ -287,6 +37,10 @@ msgid ""
|
||||
"click \"Add\"."
|
||||
msgstr ""
|
||||
|
||||
#: openidsettings.php:107 openidlogin.php:119
|
||||
msgid "OpenID URL"
|
||||
msgstr ""
|
||||
|
||||
#: openidsettings.php:117
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
@ -307,22 +61,304 @@ msgid ""
|
||||
"\"Remove\"."
|
||||
msgstr ""
|
||||
|
||||
#: openidsettings.php:172
|
||||
#: openidsettings.php:172 openidsettings.php:213
|
||||
msgid "Remove"
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: openidsettings.php:233
|
||||
#: openidsettings.php:303
|
||||
msgid "That OpenID does not belong to you."
|
||||
msgstr ""
|
||||
|
||||
#: openidsettings.php:237
|
||||
#: openidsettings.php:307
|
||||
msgid "OpenID removed."
|
||||
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
|
||||
msgid "OpenID Identity Verification"
|
||||
msgstr ""
|
||||
@ -332,17 +368,37 @@ msgid ""
|
||||
"This page should only be reached during OpenID processing, not directly."
|
||||
msgstr ""
|
||||
|
||||
#: openidtrust.php:118
|
||||
#: openidtrust.php:117
|
||||
#, php-format
|
||||
msgid ""
|
||||
"%s has asked to verify your identity. Click Continue to verify your "
|
||||
"identity and login without creating a new password."
|
||||
msgstr ""
|
||||
|
||||
#: openidtrust.php:136
|
||||
#: openidtrust.php:135
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: openidtrust.php:137
|
||||
#: openidtrust.php:136
|
||||
msgid "Cancel"
|
||||
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 ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-11 21:42+0000\n"
|
||||
"PO-Revision-Date: 2010-04-12 00:53+0100\n"
|
||||
"POT-Creation-Date: 2010-04-29 23:39+0000\n"
|
||||
"PO-Revision-Date: 2010-04-30 02:16+0100\n"
|
||||
"Last-Translator: Siebrand Mazeland <s.mazeland@xs4all.nl>\n"
|
||||
"Language-Team: Dutch\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\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
|
||||
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\"."
|
||||
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
|
||||
msgid "Add"
|
||||
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\"."
|
||||
|
||||
#: openidsettings.php:172
|
||||
#: openidsettings.php:213
|
||||
msgid "Remove"
|
||||
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."
|
||||
msgstr "De OpenID bestaat niet."
|
||||
|
||||
#: openidsettings.php:233
|
||||
#: openidsettings.php:303
|
||||
msgid "That OpenID does not belong to you."
|
||||
msgstr "Die OpenID is niet van u."
|
||||
|
||||
#: openidsettings.php:237
|
||||
#: openidsettings.php:307
|
||||
msgid "OpenID removed."
|
||||
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
|
||||
msgid "OpenID Identity Verification"
|
||||
msgstr "OpenID-identiteitscontrole"
|
||||
@ -325,16 +361,35 @@ msgstr "OpenID-identiteitscontrole"
|
||||
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."
|
||||
|
||||
#: openidtrust.php:118
|
||||
#: openidtrust.php:117
|
||||
#, php-format
|
||||
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."
|
||||
|
||||
#: openidtrust.php:136
|
||||
#: openidtrust.php:135
|
||||
msgid "Continue"
|
||||
msgstr "Doorgaan"
|
||||
|
||||
#: openidtrust.php:137
|
||||
#: openidtrust.php:136
|
||||
msgid "Cancel"
|
||||
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();
|
||||
|
||||
if (!$consumer) {
|
||||
// TRANS: OpenID plugin server error.
|
||||
common_server_error(_m('Cannot instantiate OpenID consumer object.'));
|
||||
return false;
|
||||
}
|
||||
@ -144,8 +145,11 @@ function oid_authenticate($openid_url, $returnto, $immediate=false)
|
||||
|
||||
// Handle failure status return values.
|
||||
if (!$auth_request) {
|
||||
// TRANS: OpenID plugin message. Given when an OpenID is not valid.
|
||||
return _m('Not a valid OpenID.');
|
||||
} 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);
|
||||
}
|
||||
|
||||
@ -173,6 +177,8 @@ function oid_authenticate($openid_url, $returnto, $immediate=false)
|
||||
$immediate);
|
||||
if (!$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);
|
||||
} else {
|
||||
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;
|
||||
// otherwise, render the 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));
|
||||
} else {
|
||||
$action = new AutosubmitAction(); // see below
|
||||
@ -207,6 +215,7 @@ function oid_authenticate($openid_url, $returnto, $immediate=false)
|
||||
function _oid_print_instructions()
|
||||
{
|
||||
common_element('div', 'instructions',
|
||||
// TRANS: OpenID plugin user instructions.
|
||||
_m('This form should automatically submit itself. '.
|
||||
'If not, click the submit button to go to your '.
|
||||
'OpenID provider.'));
|
||||
@ -239,6 +248,7 @@ function oid_update_user(&$user, &$sreg)
|
||||
# XXX save timezone if it's passed
|
||||
|
||||
if (!$profile->update($orig_profile)) {
|
||||
// TRANS: OpenID plugin server error.
|
||||
common_server_error(_m('Error saving the profile.'));
|
||||
return false;
|
||||
}
|
||||
@ -250,6 +260,7 @@ function oid_update_user(&$user, &$sreg)
|
||||
}
|
||||
|
||||
if (!$user->update($orig_user)) {
|
||||
// TRANS: OpenID plugin server error.
|
||||
common_server_error(_m('Error saving the user.'));
|
||||
return false;
|
||||
}
|
||||
@ -279,6 +290,7 @@ function oid_assert_allowed($url)
|
||||
return;
|
||||
}
|
||||
}
|
||||
// TRANS: OpenID plugin client exception (403).
|
||||
throw new ClientException(_m("Unauthorized URL used for OpenID login."), 403);
|
||||
}
|
||||
}
|
||||
@ -299,6 +311,7 @@ class AutosubmitAction extends Action
|
||||
|
||||
function title()
|
||||
{
|
||||
// TRANS: Title
|
||||
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'),
|
||||
// for some reason the base CSS sets <img>s as block display?!
|
||||
'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->raw('</p>');
|
||||
$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->raw('</p>');
|
||||
$this->raw($this->form_html);
|
||||
|
@ -27,6 +27,7 @@ class OpenidloginAction extends Action
|
||||
{
|
||||
parent::handle($args);
|
||||
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.'));
|
||||
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
||||
$openid_url = $this->trimmed('openid_url');
|
||||
@ -36,6 +37,7 @@ class OpenidloginAction extends Action
|
||||
# CSRF protection
|
||||
$token = $this->trimmed('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);
|
||||
return;
|
||||
}
|
||||
@ -65,10 +67,14 @@ class OpenidloginAction extends Action
|
||||
common_get_returnto()) {
|
||||
// rememberme logins have to reauthenticate before
|
||||
// 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 ' .
|
||||
'[OpenID](%%doc.openid%%) ' .
|
||||
'before changing your settings.');
|
||||
} 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.');
|
||||
}
|
||||
}
|
||||
@ -94,6 +100,7 @@ class OpenidloginAction extends Action
|
||||
|
||||
function title()
|
||||
{
|
||||
// TRANS: OpenID plugin message. Title.
|
||||
return _m('OpenID Login');
|
||||
}
|
||||
|
||||
@ -111,22 +118,28 @@ class OpenidloginAction extends Action
|
||||
'class' => 'form_settings',
|
||||
'action' => $formaction));
|
||||
$this->elementStart('fieldset');
|
||||
// TRANS: OpenID plugin logon form legend.
|
||||
$this->element('legend', null, _m('OpenID login'));
|
||||
$this->hidden('token', common_session_token());
|
||||
|
||||
$this->elementStart('ul', 'form_data');
|
||||
$this->elementStart('li');
|
||||
// TRANS: OpenID plugin logon form field label.
|
||||
$this->input('openid_url', _m('OpenID URL'),
|
||||
$this->openid_url,
|
||||
// TRANS: OpenID plugin logon form field instructions.
|
||||
_m('Your OpenID URL'));
|
||||
$this->elementEnd('li');
|
||||
$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,
|
||||
// TRANS: OpenID plugin logon form field instructions.
|
||||
_m('Automatically login in the future; ' .
|
||||
'not for shared computers!'));
|
||||
$this->elementEnd('li');
|
||||
$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('form');
|
||||
}
|
||||
|
@ -103,6 +103,7 @@ class OpenidserverAction extends Action
|
||||
$response = $this->generateDenyResponse($request);
|
||||
} else {
|
||||
//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);
|
||||
}
|
||||
} else {
|
||||
@ -123,6 +124,7 @@ class OpenidserverAction extends Action
|
||||
}
|
||||
$this->raw($response->body);
|
||||
}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);
|
||||
}
|
||||
}
|
||||
|
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 ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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 ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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 ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -17,10 +17,28 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\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"
|
||||
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
|
||||
#, php-format
|
||||
msgid "Hello, %s"
|
||||
@ -36,21 +54,3 @@ msgid "I have greeted you %d time."
|
||||
msgid_plural "I have greeted you %d times."
|
||||
msgstr[0] ""
|
||||
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 ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -16,11 +16,11 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: twitter.php:320
|
||||
#: twitter.php:342
|
||||
msgid "Your Twitter bridge has been disabled."
|
||||
msgstr ""
|
||||
|
||||
#: twitter.php:324
|
||||
#: twitter.php:346
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Hi, %1$s. We're sorry to inform you that your link to Twitter has been "
|
||||
@ -36,6 +36,89 @@ msgid ""
|
||||
"%3$s\n"
|
||||
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
|
||||
msgid "Couldn't link your Twitter account."
|
||||
msgstr ""
|
||||
@ -44,20 +127,6 @@ msgstr ""
|
||||
msgid "Couldn't link your Twitter account: oauth_token mismatch."
|
||||
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
|
||||
msgid "Twitter settings"
|
||||
msgstr ""
|
||||
|
Loading…
Reference in New Issue
Block a user