forked from GNUsocial/gnu-social
Merge branch '0.9.x' into merge
Conflicts: README actions/hostmeta.php classes/File_redirection.php lib/common.php lib/designsettings.php lib/router.php lib/util.php lib/xmppmanager.php plugins/OStatus/OStatusPlugin.php
This commit is contained in:
@@ -52,8 +52,6 @@ class OStatusPlugin extends Plugin
|
||||
function onRouterInitialized($m)
|
||||
{
|
||||
// Discovery actions
|
||||
$m->connect('main/xrd',
|
||||
array('action' => 'userxrd'));
|
||||
$m->connect('main/ownerxrd',
|
||||
array('action' => 'ownerxrd'));
|
||||
$m->connect('main/ostatus',
|
||||
@@ -1010,11 +1008,43 @@ class OStatusPlugin extends Plugin
|
||||
return true;
|
||||
}
|
||||
|
||||
function onStartHostMetaLinks(&$links) {
|
||||
$url = common_local_url('userxrd');
|
||||
$url.= '?uri={uri}';
|
||||
$links[] = array('rel' => Discovery::LRDD_REL,
|
||||
'template' => $url,
|
||||
'title' => array('Resource Descriptor'));
|
||||
function onEndXrdActionLinks(&$xrd, $user)
|
||||
{
|
||||
$xrd->links[] = array('rel' => Discovery::UPDATESFROM,
|
||||
'href' => common_local_url('ApiTimelineUser',
|
||||
array('id' => $user->id,
|
||||
'format' => 'atom')),
|
||||
'type' => 'application/atom+xml');
|
||||
|
||||
// Salmon
|
||||
$salmon_url = common_local_url('usersalmon',
|
||||
array('id' => $user->id));
|
||||
|
||||
$xrd->links[] = array('rel' => Salmon::REL_SALMON,
|
||||
'href' => $salmon_url);
|
||||
// XXX : Deprecated - to be removed.
|
||||
$xrd->links[] = array('rel' => Salmon::NS_REPLIES,
|
||||
'href' => $salmon_url);
|
||||
|
||||
$xrd->links[] = array('rel' => Salmon::NS_MENTIONS,
|
||||
'href' => $salmon_url);
|
||||
|
||||
// Get this user's keypair
|
||||
$magickey = Magicsig::staticGet('user_id', $user->id);
|
||||
if (!$magickey) {
|
||||
// No keypair yet, let's generate one.
|
||||
$magickey = new Magicsig();
|
||||
$magickey->generate($user->id);
|
||||
}
|
||||
|
||||
$xrd->links[] = array('rel' => Magicsig::PUBLICKEYREL,
|
||||
'href' => 'data:application/magic-public-key,'. $magickey->toString(false));
|
||||
|
||||
// TODO - finalize where the redirect should go on the publisher
|
||||
$url = common_local_url('ostatussub') . '?profile={uri}';
|
||||
$xrd->links[] = array('rel' => 'http://ostatus.org/schema/1.0/subscribe',
|
||||
'template' => $url );
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
@@ -1,65 +0,0 @@
|
||||
<?php
|
||||
/*
|
||||
* StatusNet - the distributed open-source microblogging tool
|
||||
* Copyright (C) 2010, StatusNet, Inc.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
if (!defined('STATUSNET')) {
|
||||
exit(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* @package OStatusPlugin
|
||||
* @maintainer James Walker <james@status.net>
|
||||
*/
|
||||
class UserxrdAction extends XrdAction
|
||||
{
|
||||
function prepare($args)
|
||||
{
|
||||
parent::prepare($args);
|
||||
|
||||
$this->uri = $this->trimmed('uri');
|
||||
$this->uri = Discovery::normalize($this->uri);
|
||||
|
||||
if (Discovery::isWebfinger($this->uri)) {
|
||||
$parts = explode('@', substr(urldecode($this->uri), 5));
|
||||
if (count($parts) == 2) {
|
||||
list($nick, $domain) = $parts;
|
||||
// @fixme confirm the domain too
|
||||
// @fixme if domain checking is added, ensure that it will not
|
||||
// cause problems with sites that have changed domains!
|
||||
$nick = common_canonical_nickname($nick);
|
||||
$this->user = User::staticGet('nickname', $nick);
|
||||
}
|
||||
} else {
|
||||
$this->user = User::staticGet('uri', $this->uri);
|
||||
if (empty($this->user)) {
|
||||
// try and get it by profile url
|
||||
$profile = Profile::staticGet('profileurl', $this->uri);
|
||||
if (!empty($profile)) {
|
||||
$this->user = User::staticGet('id', $profile->id);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (!$this->user) {
|
||||
$this->clientError(_m('No such user.'), 404);
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
@@ -1,127 +0,0 @@
|
||||
<?php
|
||||
/*
|
||||
* StatusNet - the distributed open-source microblogging tool
|
||||
* Copyright (C) 2010, StatusNet, Inc.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @package OStatusPlugin
|
||||
* @maintainer James Walker <james@status.net>
|
||||
*/
|
||||
|
||||
if (!defined('STATUSNET')) {
|
||||
exit(1);
|
||||
}
|
||||
|
||||
class XrdAction extends Action
|
||||
{
|
||||
public $uri;
|
||||
|
||||
public $user;
|
||||
|
||||
public $xrd;
|
||||
|
||||
function handle()
|
||||
{
|
||||
$nick = $this->user->nickname;
|
||||
$profile = $this->user->getProfile();
|
||||
|
||||
if (empty($this->xrd)) {
|
||||
$xrd = new XRD();
|
||||
} else {
|
||||
$xrd = $this->xrd;
|
||||
}
|
||||
|
||||
if (empty($xrd->subject)) {
|
||||
$xrd->subject = Discovery::normalize($this->uri);
|
||||
}
|
||||
|
||||
// Possible aliases for the user
|
||||
|
||||
$uris = array($this->user->uri, $profile->profileurl);
|
||||
|
||||
// FIXME: Webfinger generation code should live somewhere on its own
|
||||
|
||||
$path = common_config('site', 'path');
|
||||
|
||||
if (empty($path)) {
|
||||
$uris[] = sprintf('acct:%s@%s', $nick, common_config('site', 'server'));
|
||||
}
|
||||
|
||||
foreach ($uris as $uri) {
|
||||
if ($uri != $xrd->subject) {
|
||||
$xrd->alias[] = $uri;
|
||||
}
|
||||
}
|
||||
|
||||
$xrd->links[] = array('rel' => Discovery::PROFILEPAGE,
|
||||
'type' => 'text/html',
|
||||
'href' => $profile->profileurl);
|
||||
|
||||
$xrd->links[] = array('rel' => Discovery::UPDATESFROM,
|
||||
'href' => common_local_url('ApiTimelineUser',
|
||||
array('id' => $this->user->id,
|
||||
'format' => 'atom')),
|
||||
'type' => 'application/atom+xml');
|
||||
|
||||
// hCard
|
||||
$xrd->links[] = array('rel' => Discovery::HCARD,
|
||||
'type' => 'text/html',
|
||||
'href' => common_local_url('hcard', array('nickname' => $nick)));
|
||||
|
||||
// XFN
|
||||
$xrd->links[] = array('rel' => 'http://gmpg.org/xfn/11',
|
||||
'type' => 'text/html',
|
||||
'href' => $profile->profileurl);
|
||||
// FOAF
|
||||
$xrd->links[] = array('rel' => 'describedby',
|
||||
'type' => 'application/rdf+xml',
|
||||
'href' => common_local_url('foaf',
|
||||
array('nickname' => $nick)));
|
||||
|
||||
// Salmon
|
||||
$salmon_url = common_local_url('usersalmon',
|
||||
array('id' => $this->user->id));
|
||||
|
||||
$xrd->links[] = array('rel' => Salmon::REL_SALMON,
|
||||
'href' => $salmon_url);
|
||||
// XXX : Deprecated - to be removed.
|
||||
$xrd->links[] = array('rel' => Salmon::NS_REPLIES,
|
||||
'href' => $salmon_url);
|
||||
|
||||
$xrd->links[] = array('rel' => Salmon::NS_MENTIONS,
|
||||
'href' => $salmon_url);
|
||||
|
||||
// Get this user's keypair
|
||||
$magickey = Magicsig::staticGet('user_id', $this->user->id);
|
||||
if (!$magickey) {
|
||||
// No keypair yet, let's generate one.
|
||||
$magickey = new Magicsig();
|
||||
$magickey->generate($this->user->id);
|
||||
}
|
||||
|
||||
$xrd->links[] = array('rel' => Magicsig::PUBLICKEYREL,
|
||||
'href' => 'data:application/magic-public-key,'. $magickey->toString(false));
|
||||
|
||||
// TODO - finalize where the redirect should go on the publisher
|
||||
$url = common_local_url('ostatussub') . '?profile={uri}';
|
||||
$xrd->links[] = array('rel' => 'http://ostatus.org/schema/1.0/subscribe',
|
||||
'template' => $url );
|
||||
|
||||
header('Content-type: application/xrd+xml');
|
||||
print $xrd->toXML();
|
||||
}
|
||||
}
|
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-11-02 22:51+0000\n"
|
||||
"POT-Creation-Date: 2010-11-29 15:37+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"
|
||||
@@ -18,94 +18,94 @@ msgstr ""
|
||||
|
||||
#. TRANS: Link description for link to subscribe to a remote user.
|
||||
#. TRANS: Link text for a user to subscribe to an OStatus user.
|
||||
#: OStatusPlugin.php:229 OStatusPlugin.php:939
|
||||
#: OStatusPlugin.php:225 OStatusPlugin.php:935
|
||||
msgid "Subscribe"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Link description for link to join a remote group.
|
||||
#: OStatusPlugin.php:248 OStatusPlugin.php:657 actions/ostatussub.php:109
|
||||
#: OStatusPlugin.php:244 OStatusPlugin.php:653 actions/ostatussub.php:109
|
||||
msgid "Join"
|
||||
msgstr ""
|
||||
|
||||
#. TRANSLATE: %s is a domain.
|
||||
#: OStatusPlugin.php:461
|
||||
#: OStatusPlugin.php:457
|
||||
#, php-format
|
||||
msgid "Sent from %s via OStatus"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: OStatusPlugin.php:533
|
||||
#: OStatusPlugin.php:529
|
||||
msgid "Could not set up remote subscription."
|
||||
msgstr ""
|
||||
|
||||
#: OStatusPlugin.php:607
|
||||
#: OStatusPlugin.php:603
|
||||
msgid "Unfollow"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Success message for unsubscribe from user attempt through OStatus.
|
||||
#. TRANS: %1$s is the unsubscriber's name, %2$s is the unsubscribed user's name.
|
||||
#: OStatusPlugin.php:610
|
||||
#: OStatusPlugin.php:606
|
||||
#, php-format
|
||||
msgid "%1$s stopped following %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: OStatusPlugin.php:638
|
||||
#: OStatusPlugin.php:634
|
||||
msgid "Could not set up remote group membership."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Success message for subscribe to group attempt through OStatus.
|
||||
#. TRANS: %1$s is the member name, %2$s is the subscribed group's name.
|
||||
#: OStatusPlugin.php:660
|
||||
#: OStatusPlugin.php:656
|
||||
#, php-format
|
||||
msgid "%1$s has joined group %2$s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: OStatusPlugin.php:669
|
||||
#: OStatusPlugin.php:665
|
||||
msgid "Failed joining remote group."
|
||||
msgstr ""
|
||||
|
||||
#: OStatusPlugin.php:709
|
||||
#: OStatusPlugin.php:705
|
||||
msgid "Leave"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Success message for unsubscribe from group attempt through OStatus.
|
||||
#. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name.
|
||||
#: OStatusPlugin.php:712
|
||||
#: OStatusPlugin.php:708
|
||||
#, php-format
|
||||
msgid "%1$s has left group %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: OStatusPlugin.php:787
|
||||
#: OStatusPlugin.php:783
|
||||
msgid "Disfavor"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Success message for remove a favorite notice through OStatus.
|
||||
#. TRANS: %1$s is the unfavoring user's name, %2$s is URI to the no longer favored notice.
|
||||
#: OStatusPlugin.php:790
|
||||
#: OStatusPlugin.php:786
|
||||
#, php-format
|
||||
msgid "%1$s marked notice %2$s as no longer a favorite."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Link text for link to remote subscribe.
|
||||
#: OStatusPlugin.php:866
|
||||
#: OStatusPlugin.php:862
|
||||
msgid "Remote"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Title for activity.
|
||||
#: OStatusPlugin.php:906
|
||||
#: OStatusPlugin.php:902
|
||||
msgid "Profile update"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Ping text for remote profile update through OStatus.
|
||||
#. TRANS: %s is user that updated their profile.
|
||||
#: OStatusPlugin.php:909
|
||||
#: OStatusPlugin.php:905
|
||||
#, php-format
|
||||
msgid "%s has updated their profile page."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Plugin description.
|
||||
#: OStatusPlugin.php:954
|
||||
#: OStatusPlugin.php:950
|
||||
msgid ""
|
||||
"Follow people across social networks that implement <a href=\"http://ostatus."
|
||||
"org/\">OStatus</a>."
|
||||
@@ -343,16 +343,6 @@ msgstr ""
|
||||
msgid "Unable to find services for %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/xrd.php:64
|
||||
msgid "Invalid XML."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/xrd.php:69
|
||||
msgid "Invalid XML, missing XRD root."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/magicenvelope.php:80
|
||||
msgid "Unable to locate signer public key."
|
||||
@@ -423,7 +413,7 @@ msgstr ""
|
||||
msgid "Invalid URL passed for %1$s: \"%2$s\""
|
||||
msgstr ""
|
||||
|
||||
#: actions/userxrd.php:59 actions/ownerxrd.php:39 actions/usersalmon.php:43
|
||||
#: actions/ownerxrd.php:39 actions/usersalmon.php:43
|
||||
msgid "No such user."
|
||||
msgstr ""
|
||||
|
||||
|
756
plugins/OStatus/locale/br/LC_MESSAGES/OStatus.po
Normal file
756
plugins/OStatus/locale/br/LC_MESSAGES/OStatus.po
Normal file
@@ -0,0 +1,756 @@
|
||||
# Translation of StatusNet - OStatus to Breton (Brezhoneg)
|
||||
# Expored from translatewiki.net
|
||||
#
|
||||
# Author: Y-M D
|
||||
# --
|
||||
# This file is distributed under the same license as the StatusNet package.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - OStatus\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-11-30 20:16+0000\n"
|
||||
"PO-Revision-Date: 2010-11-30 20:20:02+0000\n"
|
||||
"Language-Team: Breton <http://translatewiki.net/wiki/Portal:br>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2010-11-30 17:54:30+0000\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r77503); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: br\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-ostatus\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. TRANS: Link description for link to subscribe to a remote user.
|
||||
#. TRANS: Link text for a user to subscribe to an OStatus user.
|
||||
#: OStatusPlugin.php:225 OStatusPlugin.php:935
|
||||
msgid "Subscribe"
|
||||
msgstr "Koumanantiñ"
|
||||
|
||||
#. TRANS: Link description for link to join a remote group.
|
||||
#: OStatusPlugin.php:244 OStatusPlugin.php:653 actions/ostatussub.php:109
|
||||
msgid "Join"
|
||||
msgstr "Stagañ"
|
||||
|
||||
#. TRANSLATE: %s is a domain.
|
||||
#: OStatusPlugin.php:457
|
||||
#, php-format
|
||||
msgid "Sent from %s via OStatus"
|
||||
msgstr "Kaset adalek %s dre OStatus"
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: OStatusPlugin.php:529
|
||||
msgid "Could not set up remote subscription."
|
||||
msgstr ""
|
||||
|
||||
#: OStatusPlugin.php:603
|
||||
msgid "Unfollow"
|
||||
msgstr "Chom hep heuliañ"
|
||||
|
||||
#. TRANS: Success message for unsubscribe from user attempt through OStatus.
|
||||
#. TRANS: %1$s is the unsubscriber's name, %2$s is the unsubscribed user's name.
|
||||
#: OStatusPlugin.php:606
|
||||
#, php-format
|
||||
msgid "%1$s stopped following %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: OStatusPlugin.php:634
|
||||
msgid "Could not set up remote group membership."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Success message for subscribe to group attempt through OStatus.
|
||||
#. TRANS: %1$s is the member name, %2$s is the subscribed group's name.
|
||||
#: OStatusPlugin.php:656
|
||||
#, php-format
|
||||
msgid "%1$s has joined group %2$s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: OStatusPlugin.php:665
|
||||
msgid "Failed joining remote group."
|
||||
msgstr ""
|
||||
|
||||
#: OStatusPlugin.php:705
|
||||
msgid "Leave"
|
||||
msgstr "Kuitaat"
|
||||
|
||||
#. TRANS: Success message for unsubscribe from group attempt through OStatus.
|
||||
#. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name.
|
||||
#: OStatusPlugin.php:708
|
||||
#, php-format
|
||||
msgid "%1$s has left group %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: OStatusPlugin.php:783
|
||||
msgid "Disfavor"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Success message for remove a favorite notice through OStatus.
|
||||
#. TRANS: %1$s is the unfavoring user's name, %2$s is URI to the no longer favored notice.
|
||||
#: OStatusPlugin.php:786
|
||||
#, php-format
|
||||
msgid "%1$s marked notice %2$s as no longer a favorite."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Link text for link to remote subscribe.
|
||||
#: OStatusPlugin.php:862
|
||||
msgid "Remote"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Title for activity.
|
||||
#: OStatusPlugin.php:902
|
||||
msgid "Profile update"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Ping text for remote profile update through OStatus.
|
||||
#. TRANS: %s is user that updated their profile.
|
||||
#: OStatusPlugin.php:905
|
||||
#, php-format
|
||||
msgid "%s has updated their profile page."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Plugin description.
|
||||
#: OStatusPlugin.php:950
|
||||
msgid ""
|
||||
"Follow people across social networks that implement <a href=\"http://ostatus."
|
||||
"org/\">OStatus</a>."
|
||||
msgstr ""
|
||||
|
||||
#: classes/FeedSub.php:252
|
||||
msgid "Attempting to start PuSH subscription for feed with no hub."
|
||||
msgstr ""
|
||||
|
||||
#: classes/FeedSub.php:282
|
||||
msgid "Attempting to end PuSH subscription for feed with no hub."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server exception. %s is a URI.
|
||||
#: classes/Ostatus_profile.php:192
|
||||
#, php-format
|
||||
msgid "Invalid ostatus_profile state: both group and profile IDs set for %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server exception. %s is a URI.
|
||||
#: classes/Ostatus_profile.php:195
|
||||
#, php-format
|
||||
msgid "Invalid ostatus_profile state: both group and profile IDs empty for %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server exception.
|
||||
#. TRANS: %1$s is the method name the exception occured in, %2$s is the actor type.
|
||||
#: classes/Ostatus_profile.php:285
|
||||
#, php-format
|
||||
msgid "Invalid actor passed to %1$s: %2$s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server exception.
|
||||
#: classes/Ostatus_profile.php:378
|
||||
msgid ""
|
||||
"Invalid type passed to Ostatus_profile::notify. It must be XML string or "
|
||||
"Activity entry."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: classes/Ostatus_profile.php:409
|
||||
msgid "Unknown feed format."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: classes/Ostatus_profile.php:433
|
||||
msgid "RSS feed without a channel."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: classes/Ostatus_profile.php:478
|
||||
msgid "Can't handle that kind of post."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception. %s is a source URI.
|
||||
#: classes/Ostatus_profile.php:561
|
||||
#, php-format
|
||||
msgid "No content for notice %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Shown when a notice is longer than supported and/or when attachments are present. At runtime
|
||||
#. TRANS: this will usually be replaced with localised text from StatusNet core messages.
|
||||
#: classes/Ostatus_profile.php:596
|
||||
msgid "Show more"
|
||||
msgstr "Diskouez muioc'h"
|
||||
|
||||
#. TRANS: Exception. %s is a profile URL.
|
||||
#: classes/Ostatus_profile.php:789
|
||||
#, php-format
|
||||
msgid "Could not reach profile page %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception. %s is a URL.
|
||||
#: classes/Ostatus_profile.php:847
|
||||
#, php-format
|
||||
msgid "Could not find a feed URL for profile page %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Feed sub exception.
|
||||
#: classes/Ostatus_profile.php:985
|
||||
msgid "Can't find enough profile information to make a feed."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server exception. %s is a URL.
|
||||
#: classes/Ostatus_profile.php:1045
|
||||
#, php-format
|
||||
msgid "Invalid avatar URL %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server exception. %s is a URI.
|
||||
#: classes/Ostatus_profile.php:1056
|
||||
#, php-format
|
||||
msgid "Tried to update avatar for unsaved remote profile %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server exception. %s is a URL.
|
||||
#: classes/Ostatus_profile.php:1066
|
||||
#, php-format
|
||||
msgid "Unable to fetch avatar from %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: classes/Ostatus_profile.php:1292
|
||||
msgid "Local user can't be referenced as remote."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: classes/Ostatus_profile.php:1297
|
||||
msgid "Local group can't be referenced as remote."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server exception.
|
||||
#: classes/Ostatus_profile.php:1349 classes/Ostatus_profile.php:1360
|
||||
msgid "Can't save local profile."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server exception.
|
||||
#: classes/Ostatus_profile.php:1368
|
||||
msgid "Can't save OStatus profile."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: classes/Ostatus_profile.php:1627 classes/Ostatus_profile.php:1655
|
||||
msgid "Not a valid webfinger address."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception. %s is a webfinger address.
|
||||
#: classes/Ostatus_profile.php:1737
|
||||
#, php-format
|
||||
msgid "Couldn't save profile for \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception. %s is a webfinger address.
|
||||
#: classes/Ostatus_profile.php:1756
|
||||
#, php-format
|
||||
msgid "Couldn't save ostatus_profile for \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception. %s is a webfinger address.
|
||||
#: classes/Ostatus_profile.php:1764
|
||||
#, php-format
|
||||
msgid "Couldn't find a valid profile for \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server exception.
|
||||
#: classes/Ostatus_profile.php:1807
|
||||
msgid "Could not store HTML content of long post as file."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception. %s is a HTTP status code.
|
||||
#: classes/HubSub.php:212
|
||||
#, php-format
|
||||
msgid "Hub subscriber verification returned HTTP %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception. %1$s is a response status code, %2$s is the body of the response.
|
||||
#: classes/HubSub.php:359
|
||||
#, php-format
|
||||
msgid "Callback returned status: %1$s. Body: %2$s"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error. POST is a HTTP command. It should not be translated.
|
||||
#: lib/salmonaction.php:42
|
||||
msgid "This method requires a POST."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error. Do not translate "application/magic-envelope+xml"
|
||||
#: lib/salmonaction.php:47
|
||||
msgid "Salmon requires \"application/magic-envelope+xml\"."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error.
|
||||
#: lib/salmonaction.php:57
|
||||
msgid "Salmon signature verification failed."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error.
|
||||
#: lib/salmonaction.php:69
|
||||
msgid "Salmon post must be an Atom entry."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: lib/salmonaction.php:118
|
||||
msgid "Unrecognized activity type."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: lib/salmonaction.php:127
|
||||
msgid "This target doesn't understand posts."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: lib/salmonaction.php:133
|
||||
msgid "This target doesn't understand follows."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: lib/salmonaction.php:139
|
||||
msgid "This target doesn't understand unfollows."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: lib/salmonaction.php:145
|
||||
msgid "This target doesn't understand favorites."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: lib/salmonaction.php:151
|
||||
msgid "This target doesn't understand unfavorites."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: lib/salmonaction.php:157
|
||||
msgid "This target doesn't understand share events."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: lib/salmonaction.php:163
|
||||
msgid "This target doesn't understand joins."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: lib/salmonaction.php:169
|
||||
msgid "This target doesn't understand leave events."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/salmonaction.php:197
|
||||
msgid "Received a salmon slap from unidentified actor."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/discovery.php:110
|
||||
#, php-format
|
||||
msgid "Unable to find services for %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/magicenvelope.php:80
|
||||
msgid "Unable to locate signer public key."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/salmon.php:93
|
||||
msgid "Salmon invalid actor for signing."
|
||||
msgstr ""
|
||||
|
||||
#: tests/gettext-speedtest.php:57
|
||||
msgid "Feeds"
|
||||
msgstr "Lanvioù"
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: actions/pushhub.php:70
|
||||
msgid "Publishing outside feeds not supported."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception. %s is a mode.
|
||||
#: actions/pushhub.php:73
|
||||
#, php-format
|
||||
msgid "Unrecognized mode \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception. %s is a topic.
|
||||
#: actions/pushhub.php:93
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Unsupported hub.topic %s this hub only serves local user and group Atom "
|
||||
"feeds."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: actions/pushhub.php:99
|
||||
#, php-format
|
||||
msgid "Invalid hub.verify \"%s\". It must be sync or async."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: actions/pushhub.php:105
|
||||
#, php-format
|
||||
msgid "Invalid hub.lease \"%s\". It must be empty or positive integer."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: actions/pushhub.php:113
|
||||
#, php-format
|
||||
msgid "Invalid hub.secret \"%s\". It must be under 200 bytes."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: actions/pushhub.php:165
|
||||
#, php-format
|
||||
msgid "Invalid hub.topic \"%s\". User doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: actions/pushhub.php:174
|
||||
#, php-format
|
||||
msgid "Invalid hub.topic \"%s\". Group doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#. TRANS: %1$s is this argument to the method this exception occurs in, %2$s is a URL.
|
||||
#: actions/pushhub.php:199
|
||||
#, php-format
|
||||
msgid "Invalid URL passed for %1$s: \"%2$s\""
|
||||
msgstr ""
|
||||
|
||||
#: actions/ownerxrd.php:39 actions/usersalmon.php:43
|
||||
msgid "No such user."
|
||||
msgstr "N'eus ket eus an implijer-se."
|
||||
|
||||
#. TRANS: Client error.
|
||||
#: actions/usersalmon.php:37 actions/groupsalmon.php:40
|
||||
msgid "No ID."
|
||||
msgstr "ID ebet"
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: actions/usersalmon.php:81
|
||||
msgid "In reply to unknown notice."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: actions/usersalmon.php:86
|
||||
msgid "In reply to a notice not by this user and not mentioning this user."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: actions/usersalmon.php:163
|
||||
msgid "Could not save new favorite."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: actions/usersalmon.php:195
|
||||
msgid "Can't favorite/unfavorite without an object."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: actions/usersalmon.php:207
|
||||
msgid "Can't handle that kind of object for liking/faving."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception. %s is an object ID.
|
||||
#: actions/usersalmon.php:214
|
||||
#, php-format
|
||||
msgid "Notice with ID %s unknown."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception. %1$s is a notice ID, %2$s is a user ID.
|
||||
#: actions/usersalmon.php:219
|
||||
#, php-format
|
||||
msgid "Notice with ID %1$s not posted by %2$s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label.
|
||||
#: actions/ostatusgroup.php:78
|
||||
msgid "Join group"
|
||||
msgstr "Mont er strollad"
|
||||
|
||||
#. TRANS: Tooltip for field label "Join group".
|
||||
#: actions/ostatusgroup.php:81
|
||||
msgid "OStatus group's address, like http://example.net/group/nickname."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Button text.
|
||||
#: actions/ostatusgroup.php:86 actions/ostatussub.php:75
|
||||
msgctxt "BUTTON"
|
||||
msgid "Continue"
|
||||
msgstr "Kenderc'hel"
|
||||
|
||||
#: actions/ostatusgroup.php:105
|
||||
msgid "You are already a member of this group."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: OStatus remote group subscription dialog error.
|
||||
#: actions/ostatusgroup.php:140
|
||||
msgid "Already a member!"
|
||||
msgstr "Ezel oc'h dija !"
|
||||
|
||||
#. TRANS: OStatus remote group subscription dialog error.
|
||||
#: actions/ostatusgroup.php:151
|
||||
msgid "Remote group join failed!"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: OStatus remote group subscription dialog error.
|
||||
#: actions/ostatusgroup.php:155
|
||||
msgid "Remote group join aborted!"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Page title for OStatus remote group join form
|
||||
#: actions/ostatusgroup.php:167
|
||||
msgid "Confirm joining remote group"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Instructions.
|
||||
#: actions/ostatusgroup.php:178
|
||||
msgid ""
|
||||
"You can subscribe to groups from other supported sites. Paste the group's "
|
||||
"profile URI below:"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error.
|
||||
#: actions/groupsalmon.php:47
|
||||
msgid "No such group."
|
||||
msgstr "N'eus ket eus ar strollad-se."
|
||||
|
||||
#. TRANS: Client error.
|
||||
#: actions/groupsalmon.php:53
|
||||
msgid "Can't accept remote posts for a remote group."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error.
|
||||
#: actions/groupsalmon.php:127
|
||||
msgid "Can't read profile to set up group membership."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error.
|
||||
#: actions/groupsalmon.php:131 actions/groupsalmon.php:174
|
||||
msgid "Groups can't join groups."
|
||||
msgstr ""
|
||||
|
||||
#: actions/groupsalmon.php:144
|
||||
msgid "You have been blocked from that group by the admin."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname.
|
||||
#: actions/groupsalmon.php:159
|
||||
#, php-format
|
||||
msgid "Could not join remote user %1$s to group %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: actions/groupsalmon.php:171
|
||||
msgid "Can't read profile to cancel group membership."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname.
|
||||
#: actions/groupsalmon.php:188
|
||||
#, php-format
|
||||
msgid "Could not remove remote user %1$s from group %2$s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for a field that takes an OStatus user address.
|
||||
#: actions/ostatussub.php:68
|
||||
msgid "Subscribe to"
|
||||
msgstr "Koumanantiñ da"
|
||||
|
||||
#. TRANS: Tooltip for field label "Subscribe to".
|
||||
#: actions/ostatussub.php:71
|
||||
msgid ""
|
||||
"OStatus user's address, like nickname@example.com or http://example.net/"
|
||||
"nickname"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Button text.
|
||||
#. TRANS: Tooltip for button "Join".
|
||||
#: actions/ostatussub.php:112
|
||||
msgctxt "BUTTON"
|
||||
msgid "Join this group"
|
||||
msgstr "Mont er strollad-se"
|
||||
|
||||
#. TRANS: Button text.
|
||||
#: actions/ostatussub.php:115
|
||||
msgctxt "BUTTON"
|
||||
msgid "Confirm"
|
||||
msgstr "Kadarnaat"
|
||||
|
||||
#. TRANS: Tooltip for button "Confirm".
|
||||
#: actions/ostatussub.php:117
|
||||
msgid "Subscribe to this user"
|
||||
msgstr ""
|
||||
|
||||
#: actions/ostatussub.php:138
|
||||
msgid "You are already subscribed to this user."
|
||||
msgstr ""
|
||||
|
||||
#: actions/ostatussub.php:167
|
||||
msgid "Photo"
|
||||
msgstr "Skeudenn"
|
||||
|
||||
#: actions/ostatussub.php:178
|
||||
msgid "Nickname"
|
||||
msgstr "Lesanv"
|
||||
|
||||
#: actions/ostatussub.php:199
|
||||
msgid "Location"
|
||||
msgstr "Lec'hiadur"
|
||||
|
||||
#: actions/ostatussub.php:208
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
#: actions/ostatussub.php:220
|
||||
msgid "Note"
|
||||
msgstr "Notenn"
|
||||
|
||||
#. TRANS: Error text.
|
||||
#: actions/ostatussub.php:256 actions/ostatussub.php:263
|
||||
#: actions/ostatussub.php:288
|
||||
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 ""
|
||||
|
||||
#. TRANS: Error text.
|
||||
#: actions/ostatussub.php:267 actions/ostatussub.php:271
|
||||
#: actions/ostatussub.php:275 actions/ostatussub.php:279
|
||||
#: actions/ostatussub.php:283
|
||||
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:317
|
||||
msgid "Already subscribed!"
|
||||
msgstr "Koumanantet dija !"
|
||||
|
||||
#. TRANS: OStatus remote subscription dialog error.
|
||||
#: actions/ostatussub.php:322
|
||||
msgid "Remote subscription failed!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/ostatussub.php:369 actions/ostatusinit.php:64
|
||||
msgid "There was a problem with your session token. Try again, please."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Form title.
|
||||
#: actions/ostatussub.php:397 actions/ostatusinit.php:83
|
||||
msgid "Subscribe to user"
|
||||
msgstr "En em goumanantiñ d'un implijer"
|
||||
|
||||
#. TRANS: Page title for OStatus remote subscription form
|
||||
#: actions/ostatussub.php:417
|
||||
msgid "Confirm"
|
||||
msgstr "Kadarnaat"
|
||||
|
||||
#. TRANS: Instructions.
|
||||
#: actions/ostatussub.php:429
|
||||
msgid ""
|
||||
"You can subscribe to users from other supported sites. Paste their address "
|
||||
"or profile URI below:"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error.
|
||||
#: actions/ostatusinit.php:42
|
||||
msgid "You can use the local subscription!"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Form legend.
|
||||
#: actions/ostatusinit.php:98
|
||||
#, php-format
|
||||
msgid "Join group %s"
|
||||
msgstr "Mont er strollad %s"
|
||||
|
||||
#. TRANS: Button text.
|
||||
#: actions/ostatusinit.php:100
|
||||
msgctxt "BUTTON"
|
||||
msgid "Join"
|
||||
msgstr "Stagañ"
|
||||
|
||||
#. TRANS: Form legend.
|
||||
#: actions/ostatusinit.php:103
|
||||
#, php-format
|
||||
msgid "Subscribe to %s"
|
||||
msgstr "Koumanantiñ da %s"
|
||||
|
||||
#. TRANS: Button text.
|
||||
#: actions/ostatusinit.php:105
|
||||
msgctxt "BUTTON"
|
||||
msgid "Subscribe"
|
||||
msgstr "Koumanantiñ"
|
||||
|
||||
#. TRANS: Field label.
|
||||
#: actions/ostatusinit.php:118
|
||||
msgid "User nickname"
|
||||
msgstr "Lesanv an implijer"
|
||||
|
||||
#: actions/ostatusinit.php:119
|
||||
msgid "Nickname of the user you want to follow."
|
||||
msgstr "Lesanv an implijer ho peus c'hoant heuliañ."
|
||||
|
||||
#. TRANS: Field label.
|
||||
#: actions/ostatusinit.php:124
|
||||
msgid "Profile Account"
|
||||
msgstr "Kont profil"
|
||||
|
||||
#. TRANS: Tooltip for field label "Profile Account".
|
||||
#: actions/ostatusinit.php:126
|
||||
msgid "Your account id (e.g. user@identi.ca)."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error.
|
||||
#: actions/ostatusinit.php:148
|
||||
msgid "Must provide a remote profile."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error.
|
||||
#: actions/ostatusinit.php:160
|
||||
msgid "Couldn't look up OStatus account profile."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error.
|
||||
#: actions/ostatusinit.php:173
|
||||
msgid "Couldn't confirm remote profile address."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Page title.
|
||||
#: actions/ostatusinit.php:218
|
||||
msgid "OStatus Connect"
|
||||
msgstr ""
|
||||
|
||||
#: actions/pushcallback.php:50
|
||||
msgid "Empty or invalid feed id."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server exception. %s is a feed ID.
|
||||
#: actions/pushcallback.php:56
|
||||
#, php-format
|
||||
msgid "Unknown PuSH feed id %s"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception. %s is an invalid feed name.
|
||||
#: actions/pushcallback.php:96
|
||||
#, php-format
|
||||
msgid "Bad hub.topic feed \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given.
|
||||
#: actions/pushcallback.php:101
|
||||
#, php-format
|
||||
msgid "Bad hub.verify_token %1$s for %2$s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception. %s is an invalid topic.
|
||||
#: actions/pushcallback.php:108
|
||||
#, php-format
|
||||
msgid "Unexpected subscribe request for %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception. %s is an invalid topic.
|
||||
#: actions/pushcallback.php:113
|
||||
#, php-format
|
||||
msgid "Unexpected unsubscribe request for %s."
|
||||
msgstr ""
|
@@ -10,13 +10,13 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - OStatus\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-11-02 22:51+0000\n"
|
||||
"PO-Revision-Date: 2010-11-02 22:54:51+0000\n"
|
||||
"POT-Creation-Date: 2010-11-30 16:54+0000\n"
|
||||
"PO-Revision-Date: 2010-11-30 16:58:00+0000\n"
|
||||
"Language-Team: French <http://translatewiki.net/wiki/Portal:fr>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2010-10-29 16:13:55+0000\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r75875); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2010-11-29 19:45:02+0000\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r77474); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: fr\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-ostatus\n"
|
||||
@@ -24,94 +24,94 @@ msgstr ""
|
||||
|
||||
#. TRANS: Link description for link to subscribe to a remote user.
|
||||
#. TRANS: Link text for a user to subscribe to an OStatus user.
|
||||
#: OStatusPlugin.php:229 OStatusPlugin.php:939
|
||||
#: OStatusPlugin.php:225 OStatusPlugin.php:935
|
||||
msgid "Subscribe"
|
||||
msgstr "S'abonner"
|
||||
|
||||
#. TRANS: Link description for link to join a remote group.
|
||||
#: OStatusPlugin.php:248 OStatusPlugin.php:657 actions/ostatussub.php:109
|
||||
#: OStatusPlugin.php:244 OStatusPlugin.php:653 actions/ostatussub.php:109
|
||||
msgid "Join"
|
||||
msgstr "Rejoindre"
|
||||
|
||||
#. TRANSLATE: %s is a domain.
|
||||
#: OStatusPlugin.php:461
|
||||
#: OStatusPlugin.php:457
|
||||
#, php-format
|
||||
msgid "Sent from %s via OStatus"
|
||||
msgstr "Envoyé depuis %s via OStatus"
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: OStatusPlugin.php:533
|
||||
#: OStatusPlugin.php:529
|
||||
msgid "Could not set up remote subscription."
|
||||
msgstr "Impossible de mettre en place l’abonnement distant."
|
||||
|
||||
#: OStatusPlugin.php:607
|
||||
#: OStatusPlugin.php:603
|
||||
msgid "Unfollow"
|
||||
msgstr "Ne plus suivre"
|
||||
|
||||
#. TRANS: Success message for unsubscribe from user attempt through OStatus.
|
||||
#. TRANS: %1$s is the unsubscriber's name, %2$s is the unsubscribed user's name.
|
||||
#: OStatusPlugin.php:610
|
||||
#: OStatusPlugin.php:606
|
||||
#, php-format
|
||||
msgid "%1$s stopped following %2$s."
|
||||
msgstr "%1$s a cessé de suivre %2$s."
|
||||
|
||||
#: OStatusPlugin.php:638
|
||||
#: OStatusPlugin.php:634
|
||||
msgid "Could not set up remote group membership."
|
||||
msgstr "Impossible de mettre en place l’appartenance au groupe distant."
|
||||
|
||||
#. TRANS: Success message for subscribe to group attempt through OStatus.
|
||||
#. TRANS: %1$s is the member name, %2$s is the subscribed group's name.
|
||||
#: OStatusPlugin.php:660
|
||||
#: OStatusPlugin.php:656
|
||||
#, php-format
|
||||
msgid "%1$s has joined group %2$s."
|
||||
msgstr "%1$s a rejoint le groupe %2$s."
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: OStatusPlugin.php:669
|
||||
#: OStatusPlugin.php:665
|
||||
msgid "Failed joining remote group."
|
||||
msgstr "Échec lors de l’adhésion au groupe distant."
|
||||
|
||||
#: OStatusPlugin.php:709
|
||||
#: OStatusPlugin.php:705
|
||||
msgid "Leave"
|
||||
msgstr "Sortir"
|
||||
|
||||
#. TRANS: Success message for unsubscribe from group attempt through OStatus.
|
||||
#. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name.
|
||||
#: OStatusPlugin.php:712
|
||||
#: OStatusPlugin.php:708
|
||||
#, php-format
|
||||
msgid "%1$s has left group %2$s."
|
||||
msgstr "%1$s a quitté le groupe %2$s."
|
||||
|
||||
#: OStatusPlugin.php:787
|
||||
#: OStatusPlugin.php:783
|
||||
msgid "Disfavor"
|
||||
msgstr "Retirer des favoris"
|
||||
|
||||
#. TRANS: Success message for remove a favorite notice through OStatus.
|
||||
#. TRANS: %1$s is the unfavoring user's name, %2$s is URI to the no longer favored notice.
|
||||
#: OStatusPlugin.php:790
|
||||
#: OStatusPlugin.php:786
|
||||
#, php-format
|
||||
msgid "%1$s marked notice %2$s as no longer a favorite."
|
||||
msgstr "%1$s a retiré l’avis %2$s de ses favoris."
|
||||
|
||||
#. TRANS: Link text for link to remote subscribe.
|
||||
#: OStatusPlugin.php:866
|
||||
#: OStatusPlugin.php:862
|
||||
msgid "Remote"
|
||||
msgstr "À distance"
|
||||
|
||||
#. TRANS: Title for activity.
|
||||
#: OStatusPlugin.php:906
|
||||
#: OStatusPlugin.php:902
|
||||
msgid "Profile update"
|
||||
msgstr "Mise à jour du profil"
|
||||
|
||||
#. TRANS: Ping text for remote profile update through OStatus.
|
||||
#. TRANS: %s is user that updated their profile.
|
||||
#: OStatusPlugin.php:909
|
||||
#: OStatusPlugin.php:905
|
||||
#, php-format
|
||||
msgid "%s has updated their profile page."
|
||||
msgstr "%s a mis à jour sa page de profil."
|
||||
|
||||
#. TRANS: Plugin description.
|
||||
#: OStatusPlugin.php:954
|
||||
#: OStatusPlugin.php:950
|
||||
msgid ""
|
||||
"Follow people across social networks that implement <a href=\"http://ostatus."
|
||||
"org/\">OStatus</a>."
|
||||
@@ -370,16 +370,6 @@ msgstr "Réception d’une giffle Salmon d’un acteur non identifié."
|
||||
msgid "Unable to find services for %s."
|
||||
msgstr "Impossible de trouver des services pour « %s »."
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/xrd.php:64
|
||||
msgid "Invalid XML."
|
||||
msgstr "XML invalide."
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/xrd.php:69
|
||||
msgid "Invalid XML, missing XRD root."
|
||||
msgstr "XML invalide, racine XRD manquante."
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/magicenvelope.php:80
|
||||
msgid "Unable to locate signer public key."
|
||||
@@ -459,7 +449,7 @@ msgstr "Le sujet de concentrateur « %s » est invalide. Le groupe n’existe pa
|
||||
msgid "Invalid URL passed for %1$s: \"%2$s\""
|
||||
msgstr "URL invalide passée à la méthode « %1$s » : « %2$s »"
|
||||
|
||||
#: actions/userxrd.php:59 actions/ownerxrd.php:39 actions/usersalmon.php:43
|
||||
#: actions/ownerxrd.php:39 actions/usersalmon.php:43
|
||||
msgid "No such user."
|
||||
msgstr "Utilisateur inexistant."
|
||||
|
||||
|
756
plugins/OStatus/locale/gl/LC_MESSAGES/OStatus.po
Normal file
756
plugins/OStatus/locale/gl/LC_MESSAGES/OStatus.po
Normal file
@@ -0,0 +1,756 @@
|
||||
# Translation of StatusNet - OStatus to Galician (Galego)
|
||||
# Expored from translatewiki.net
|
||||
#
|
||||
# Author: Toliño
|
||||
# --
|
||||
# This file is distributed under the same license as the StatusNet package.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - OStatus\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-11-30 20:16+0000\n"
|
||||
"PO-Revision-Date: 2010-11-30 20:20:02+0000\n"
|
||||
"Language-Team: Galician <http://translatewiki.net/wiki/Portal:gl>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2010-11-30 17:54:30+0000\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r77503); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: gl\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-ostatus\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Link description for link to subscribe to a remote user.
|
||||
#. TRANS: Link text for a user to subscribe to an OStatus user.
|
||||
#: OStatusPlugin.php:225 OStatusPlugin.php:935
|
||||
msgid "Subscribe"
|
||||
msgstr "Subscribirse"
|
||||
|
||||
#. TRANS: Link description for link to join a remote group.
|
||||
#: OStatusPlugin.php:244 OStatusPlugin.php:653 actions/ostatussub.php:109
|
||||
msgid "Join"
|
||||
msgstr "Unirse"
|
||||
|
||||
#. TRANSLATE: %s is a domain.
|
||||
#: OStatusPlugin.php:457
|
||||
#, php-format
|
||||
msgid "Sent from %s via OStatus"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: OStatusPlugin.php:529
|
||||
msgid "Could not set up remote subscription."
|
||||
msgstr ""
|
||||
|
||||
#: OStatusPlugin.php:603
|
||||
msgid "Unfollow"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Success message for unsubscribe from user attempt through OStatus.
|
||||
#. TRANS: %1$s is the unsubscriber's name, %2$s is the unsubscribed user's name.
|
||||
#: OStatusPlugin.php:606
|
||||
#, php-format
|
||||
msgid "%1$s stopped following %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: OStatusPlugin.php:634
|
||||
msgid "Could not set up remote group membership."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Success message for subscribe to group attempt through OStatus.
|
||||
#. TRANS: %1$s is the member name, %2$s is the subscribed group's name.
|
||||
#: OStatusPlugin.php:656
|
||||
#, php-format
|
||||
msgid "%1$s has joined group %2$s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: OStatusPlugin.php:665
|
||||
msgid "Failed joining remote group."
|
||||
msgstr ""
|
||||
|
||||
#: OStatusPlugin.php:705
|
||||
msgid "Leave"
|
||||
msgstr "Deixar"
|
||||
|
||||
#. TRANS: Success message for unsubscribe from group attempt through OStatus.
|
||||
#. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name.
|
||||
#: OStatusPlugin.php:708
|
||||
#, php-format
|
||||
msgid "%1$s has left group %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: OStatusPlugin.php:783
|
||||
msgid "Disfavor"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Success message for remove a favorite notice through OStatus.
|
||||
#. TRANS: %1$s is the unfavoring user's name, %2$s is URI to the no longer favored notice.
|
||||
#: OStatusPlugin.php:786
|
||||
#, php-format
|
||||
msgid "%1$s marked notice %2$s as no longer a favorite."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Link text for link to remote subscribe.
|
||||
#: OStatusPlugin.php:862
|
||||
msgid "Remote"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Title for activity.
|
||||
#: OStatusPlugin.php:902
|
||||
msgid "Profile update"
|
||||
msgstr "Actualización do perfil"
|
||||
|
||||
#. TRANS: Ping text for remote profile update through OStatus.
|
||||
#. TRANS: %s is user that updated their profile.
|
||||
#: OStatusPlugin.php:905
|
||||
#, php-format
|
||||
msgid "%s has updated their profile page."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Plugin description.
|
||||
#: OStatusPlugin.php:950
|
||||
msgid ""
|
||||
"Follow people across social networks that implement <a href=\"http://ostatus."
|
||||
"org/\">OStatus</a>."
|
||||
msgstr ""
|
||||
|
||||
#: classes/FeedSub.php:252
|
||||
msgid "Attempting to start PuSH subscription for feed with no hub."
|
||||
msgstr ""
|
||||
|
||||
#: classes/FeedSub.php:282
|
||||
msgid "Attempting to end PuSH subscription for feed with no hub."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server exception. %s is a URI.
|
||||
#: classes/Ostatus_profile.php:192
|
||||
#, php-format
|
||||
msgid "Invalid ostatus_profile state: both group and profile IDs set for %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server exception. %s is a URI.
|
||||
#: classes/Ostatus_profile.php:195
|
||||
#, php-format
|
||||
msgid "Invalid ostatus_profile state: both group and profile IDs empty for %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server exception.
|
||||
#. TRANS: %1$s is the method name the exception occured in, %2$s is the actor type.
|
||||
#: classes/Ostatus_profile.php:285
|
||||
#, php-format
|
||||
msgid "Invalid actor passed to %1$s: %2$s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server exception.
|
||||
#: classes/Ostatus_profile.php:378
|
||||
msgid ""
|
||||
"Invalid type passed to Ostatus_profile::notify. It must be XML string or "
|
||||
"Activity entry."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: classes/Ostatus_profile.php:409
|
||||
msgid "Unknown feed format."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: classes/Ostatus_profile.php:433
|
||||
msgid "RSS feed without a channel."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: classes/Ostatus_profile.php:478
|
||||
msgid "Can't handle that kind of post."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception. %s is a source URI.
|
||||
#: classes/Ostatus_profile.php:561
|
||||
#, php-format
|
||||
msgid "No content for notice %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Shown when a notice is longer than supported and/or when attachments are present. At runtime
|
||||
#. TRANS: this will usually be replaced with localised text from StatusNet core messages.
|
||||
#: classes/Ostatus_profile.php:596
|
||||
msgid "Show more"
|
||||
msgstr "Mostrar máis"
|
||||
|
||||
#. TRANS: Exception. %s is a profile URL.
|
||||
#: classes/Ostatus_profile.php:789
|
||||
#, php-format
|
||||
msgid "Could not reach profile page %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception. %s is a URL.
|
||||
#: classes/Ostatus_profile.php:847
|
||||
#, php-format
|
||||
msgid "Could not find a feed URL for profile page %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Feed sub exception.
|
||||
#: classes/Ostatus_profile.php:985
|
||||
msgid "Can't find enough profile information to make a feed."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server exception. %s is a URL.
|
||||
#: classes/Ostatus_profile.php:1045
|
||||
#, php-format
|
||||
msgid "Invalid avatar URL %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server exception. %s is a URI.
|
||||
#: classes/Ostatus_profile.php:1056
|
||||
#, php-format
|
||||
msgid "Tried to update avatar for unsaved remote profile %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server exception. %s is a URL.
|
||||
#: classes/Ostatus_profile.php:1066
|
||||
#, php-format
|
||||
msgid "Unable to fetch avatar from %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: classes/Ostatus_profile.php:1292
|
||||
msgid "Local user can't be referenced as remote."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: classes/Ostatus_profile.php:1297
|
||||
msgid "Local group can't be referenced as remote."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server exception.
|
||||
#: classes/Ostatus_profile.php:1349 classes/Ostatus_profile.php:1360
|
||||
msgid "Can't save local profile."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server exception.
|
||||
#: classes/Ostatus_profile.php:1368
|
||||
msgid "Can't save OStatus profile."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: classes/Ostatus_profile.php:1627 classes/Ostatus_profile.php:1655
|
||||
msgid "Not a valid webfinger address."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception. %s is a webfinger address.
|
||||
#: classes/Ostatus_profile.php:1737
|
||||
#, php-format
|
||||
msgid "Couldn't save profile for \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception. %s is a webfinger address.
|
||||
#: classes/Ostatus_profile.php:1756
|
||||
#, php-format
|
||||
msgid "Couldn't save ostatus_profile for \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception. %s is a webfinger address.
|
||||
#: classes/Ostatus_profile.php:1764
|
||||
#, php-format
|
||||
msgid "Couldn't find a valid profile for \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server exception.
|
||||
#: classes/Ostatus_profile.php:1807
|
||||
msgid "Could not store HTML content of long post as file."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception. %s is a HTTP status code.
|
||||
#: classes/HubSub.php:212
|
||||
#, php-format
|
||||
msgid "Hub subscriber verification returned HTTP %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception. %1$s is a response status code, %2$s is the body of the response.
|
||||
#: classes/HubSub.php:359
|
||||
#, php-format
|
||||
msgid "Callback returned status: %1$s. Body: %2$s"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error. POST is a HTTP command. It should not be translated.
|
||||
#: lib/salmonaction.php:42
|
||||
msgid "This method requires a POST."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error. Do not translate "application/magic-envelope+xml"
|
||||
#: lib/salmonaction.php:47
|
||||
msgid "Salmon requires \"application/magic-envelope+xml\"."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error.
|
||||
#: lib/salmonaction.php:57
|
||||
msgid "Salmon signature verification failed."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error.
|
||||
#: lib/salmonaction.php:69
|
||||
msgid "Salmon post must be an Atom entry."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: lib/salmonaction.php:118
|
||||
msgid "Unrecognized activity type."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: lib/salmonaction.php:127
|
||||
msgid "This target doesn't understand posts."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: lib/salmonaction.php:133
|
||||
msgid "This target doesn't understand follows."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: lib/salmonaction.php:139
|
||||
msgid "This target doesn't understand unfollows."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: lib/salmonaction.php:145
|
||||
msgid "This target doesn't understand favorites."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: lib/salmonaction.php:151
|
||||
msgid "This target doesn't understand unfavorites."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: lib/salmonaction.php:157
|
||||
msgid "This target doesn't understand share events."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: lib/salmonaction.php:163
|
||||
msgid "This target doesn't understand joins."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: lib/salmonaction.php:169
|
||||
msgid "This target doesn't understand leave events."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/salmonaction.php:197
|
||||
msgid "Received a salmon slap from unidentified actor."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/discovery.php:110
|
||||
#, php-format
|
||||
msgid "Unable to find services for %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/magicenvelope.php:80
|
||||
msgid "Unable to locate signer public key."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/salmon.php:93
|
||||
msgid "Salmon invalid actor for signing."
|
||||
msgstr ""
|
||||
|
||||
#: tests/gettext-speedtest.php:57
|
||||
msgid "Feeds"
|
||||
msgstr "Fontes de novas"
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: actions/pushhub.php:70
|
||||
msgid "Publishing outside feeds not supported."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception. %s is a mode.
|
||||
#: actions/pushhub.php:73
|
||||
#, php-format
|
||||
msgid "Unrecognized mode \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception. %s is a topic.
|
||||
#: actions/pushhub.php:93
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Unsupported hub.topic %s this hub only serves local user and group Atom "
|
||||
"feeds."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: actions/pushhub.php:99
|
||||
#, php-format
|
||||
msgid "Invalid hub.verify \"%s\". It must be sync or async."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: actions/pushhub.php:105
|
||||
#, php-format
|
||||
msgid "Invalid hub.lease \"%s\". It must be empty or positive integer."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: actions/pushhub.php:113
|
||||
#, php-format
|
||||
msgid "Invalid hub.secret \"%s\". It must be under 200 bytes."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: actions/pushhub.php:165
|
||||
#, php-format
|
||||
msgid "Invalid hub.topic \"%s\". User doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: actions/pushhub.php:174
|
||||
#, php-format
|
||||
msgid "Invalid hub.topic \"%s\". Group doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#. TRANS: %1$s is this argument to the method this exception occurs in, %2$s is a URL.
|
||||
#: actions/pushhub.php:199
|
||||
#, php-format
|
||||
msgid "Invalid URL passed for %1$s: \"%2$s\""
|
||||
msgstr ""
|
||||
|
||||
#: actions/ownerxrd.php:39 actions/usersalmon.php:43
|
||||
msgid "No such user."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error.
|
||||
#: actions/usersalmon.php:37 actions/groupsalmon.php:40
|
||||
msgid "No ID."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: actions/usersalmon.php:81
|
||||
msgid "In reply to unknown notice."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: actions/usersalmon.php:86
|
||||
msgid "In reply to a notice not by this user and not mentioning this user."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: actions/usersalmon.php:163
|
||||
msgid "Could not save new favorite."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: actions/usersalmon.php:195
|
||||
msgid "Can't favorite/unfavorite without an object."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception.
|
||||
#: actions/usersalmon.php:207
|
||||
msgid "Can't handle that kind of object for liking/faving."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception. %s is an object ID.
|
||||
#: actions/usersalmon.php:214
|
||||
#, php-format
|
||||
msgid "Notice with ID %s unknown."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception. %1$s is a notice ID, %2$s is a user ID.
|
||||
#: actions/usersalmon.php:219
|
||||
#, php-format
|
||||
msgid "Notice with ID %1$s not posted by %2$s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label.
|
||||
#: actions/ostatusgroup.php:78
|
||||
msgid "Join group"
|
||||
msgstr "Unirse ao grupo"
|
||||
|
||||
#. TRANS: Tooltip for field label "Join group".
|
||||
#: actions/ostatusgroup.php:81
|
||||
msgid "OStatus group's address, like http://example.net/group/nickname."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Button text.
|
||||
#: actions/ostatusgroup.php:86 actions/ostatussub.php:75
|
||||
msgctxt "BUTTON"
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: actions/ostatusgroup.php:105
|
||||
msgid "You are already a member of this group."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: OStatus remote group subscription dialog error.
|
||||
#: actions/ostatusgroup.php:140
|
||||
msgid "Already a member!"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: OStatus remote group subscription dialog error.
|
||||
#: actions/ostatusgroup.php:151
|
||||
msgid "Remote group join failed!"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: OStatus remote group subscription dialog error.
|
||||
#: actions/ostatusgroup.php:155
|
||||
msgid "Remote group join aborted!"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Page title for OStatus remote group join form
|
||||
#: actions/ostatusgroup.php:167
|
||||
msgid "Confirm joining remote group"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Instructions.
|
||||
#: actions/ostatusgroup.php:178
|
||||
msgid ""
|
||||
"You can subscribe to groups from other supported sites. Paste the group's "
|
||||
"profile URI below:"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error.
|
||||
#: actions/groupsalmon.php:47
|
||||
msgid "No such group."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error.
|
||||
#: actions/groupsalmon.php:53
|
||||
msgid "Can't accept remote posts for a remote group."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error.
|
||||
#: actions/groupsalmon.php:127
|
||||
msgid "Can't read profile to set up group membership."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error.
|
||||
#: actions/groupsalmon.php:131 actions/groupsalmon.php:174
|
||||
msgid "Groups can't join groups."
|
||||
msgstr ""
|
||||
|
||||
#: actions/groupsalmon.php:144
|
||||
msgid "You have been blocked from that group by the admin."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname.
|
||||
#: actions/groupsalmon.php:159
|
||||
#, php-format
|
||||
msgid "Could not join remote user %1$s to group %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: actions/groupsalmon.php:171
|
||||
msgid "Can't read profile to cancel group membership."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname.
|
||||
#: actions/groupsalmon.php:188
|
||||
#, php-format
|
||||
msgid "Could not remove remote user %1$s from group %2$s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Field label for a field that takes an OStatus user address.
|
||||
#: actions/ostatussub.php:68
|
||||
msgid "Subscribe to"
|
||||
msgstr "Subscribirse a"
|
||||
|
||||
#. TRANS: Tooltip for field label "Subscribe to".
|
||||
#: actions/ostatussub.php:71
|
||||
msgid ""
|
||||
"OStatus user's address, like nickname@example.com or http://example.net/"
|
||||
"nickname"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Button text.
|
||||
#. TRANS: Tooltip for button "Join".
|
||||
#: actions/ostatussub.php:112
|
||||
msgctxt "BUTTON"
|
||||
msgid "Join this group"
|
||||
msgstr "Unirse a este grupo"
|
||||
|
||||
#. TRANS: Button text.
|
||||
#: actions/ostatussub.php:115
|
||||
msgctxt "BUTTON"
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
|
||||
#. TRANS: Tooltip for button "Confirm".
|
||||
#: actions/ostatussub.php:117
|
||||
msgid "Subscribe to this user"
|
||||
msgstr "Subscribirse a este usuario"
|
||||
|
||||
#: actions/ostatussub.php:138
|
||||
msgid "You are already subscribed to this user."
|
||||
msgstr "Xa está subscrito a este usuario."
|
||||
|
||||
#: actions/ostatussub.php:167
|
||||
msgid "Photo"
|
||||
msgstr "Foto"
|
||||
|
||||
#: actions/ostatussub.php:178
|
||||
msgid "Nickname"
|
||||
msgstr "Alcume"
|
||||
|
||||
#: actions/ostatussub.php:199
|
||||
msgid "Location"
|
||||
msgstr "Localización"
|
||||
|
||||
#: actions/ostatussub.php:208
|
||||
msgid "URL"
|
||||
msgstr "URL"
|
||||
|
||||
#: actions/ostatussub.php:220
|
||||
msgid "Note"
|
||||
msgstr "Nota"
|
||||
|
||||
#. TRANS: Error text.
|
||||
#: actions/ostatussub.php:256 actions/ostatussub.php:263
|
||||
#: actions/ostatussub.php:288
|
||||
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 ""
|
||||
|
||||
#. TRANS: Error text.
|
||||
#: actions/ostatussub.php:267 actions/ostatussub.php:271
|
||||
#: actions/ostatussub.php:275 actions/ostatussub.php:279
|
||||
#: actions/ostatussub.php:283
|
||||
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:317
|
||||
msgid "Already subscribed!"
|
||||
msgstr "Xa está subscrito!"
|
||||
|
||||
#. TRANS: OStatus remote subscription dialog error.
|
||||
#: actions/ostatussub.php:322
|
||||
msgid "Remote subscription failed!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/ostatussub.php:369 actions/ostatusinit.php:64
|
||||
msgid "There was a problem with your session token. Try again, please."
|
||||
msgstr "Houbo un erro co seu pase. Inténteo de novo."
|
||||
|
||||
#. TRANS: Form title.
|
||||
#: actions/ostatussub.php:397 actions/ostatusinit.php:83
|
||||
msgid "Subscribe to user"
|
||||
msgstr "Subscribirse ao usuario"
|
||||
|
||||
#. TRANS: Page title for OStatus remote subscription form
|
||||
#: actions/ostatussub.php:417
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
|
||||
#. TRANS: Instructions.
|
||||
#: actions/ostatussub.php:429
|
||||
msgid ""
|
||||
"You can subscribe to users from other supported sites. Paste their address "
|
||||
"or profile URI below:"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error.
|
||||
#: actions/ostatusinit.php:42
|
||||
msgid "You can use the local subscription!"
|
||||
msgstr "Pode usar a subscrición local!"
|
||||
|
||||
#. TRANS: Form legend.
|
||||
#: actions/ostatusinit.php:98
|
||||
#, php-format
|
||||
msgid "Join group %s"
|
||||
msgstr "Unirse ao grupo \"%s\""
|
||||
|
||||
#. TRANS: Button text.
|
||||
#: actions/ostatusinit.php:100
|
||||
msgctxt "BUTTON"
|
||||
msgid "Join"
|
||||
msgstr "Unirse"
|
||||
|
||||
#. TRANS: Form legend.
|
||||
#: actions/ostatusinit.php:103
|
||||
#, php-format
|
||||
msgid "Subscribe to %s"
|
||||
msgstr "Subscribirse a %s"
|
||||
|
||||
#. TRANS: Button text.
|
||||
#: actions/ostatusinit.php:105
|
||||
msgctxt "BUTTON"
|
||||
msgid "Subscribe"
|
||||
msgstr "Subscribirse"
|
||||
|
||||
#. TRANS: Field label.
|
||||
#: actions/ostatusinit.php:118
|
||||
msgid "User nickname"
|
||||
msgstr "Alcume do usuario"
|
||||
|
||||
#: actions/ostatusinit.php:119
|
||||
msgid "Nickname of the user you want to follow."
|
||||
msgstr "Alcume do usuario ao que quere seguir."
|
||||
|
||||
#. TRANS: Field label.
|
||||
#: actions/ostatusinit.php:124
|
||||
msgid "Profile Account"
|
||||
msgstr "Conta de perfil"
|
||||
|
||||
#. TRANS: Tooltip for field label "Profile Account".
|
||||
#: actions/ostatusinit.php:126
|
||||
msgid "Your account id (e.g. user@identi.ca)."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error.
|
||||
#: actions/ostatusinit.php:148
|
||||
msgid "Must provide a remote profile."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error.
|
||||
#: actions/ostatusinit.php:160
|
||||
msgid "Couldn't look up OStatus account profile."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error.
|
||||
#: actions/ostatusinit.php:173
|
||||
msgid "Couldn't confirm remote profile address."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Page title.
|
||||
#: actions/ostatusinit.php:218
|
||||
msgid "OStatus Connect"
|
||||
msgstr ""
|
||||
|
||||
#: actions/pushcallback.php:50
|
||||
msgid "Empty or invalid feed id."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Server exception. %s is a feed ID.
|
||||
#: actions/pushcallback.php:56
|
||||
#, php-format
|
||||
msgid "Unknown PuSH feed id %s"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception. %s is an invalid feed name.
|
||||
#: actions/pushcallback.php:96
|
||||
#, php-format
|
||||
msgid "Bad hub.topic feed \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given.
|
||||
#: actions/pushcallback.php:101
|
||||
#, php-format
|
||||
msgid "Bad hub.verify_token %1$s for %2$s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception. %s is an invalid topic.
|
||||
#: actions/pushcallback.php:108
|
||||
#, php-format
|
||||
msgid "Unexpected subscribe request for %s."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client exception. %s is an invalid topic.
|
||||
#: actions/pushcallback.php:113
|
||||
#, php-format
|
||||
msgid "Unexpected unsubscribe request for %s."
|
||||
msgstr ""
|
@@ -9,13 +9,13 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - OStatus\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-11-02 22:51+0000\n"
|
||||
"PO-Revision-Date: 2010-11-02 22:54:51+0000\n"
|
||||
"POT-Creation-Date: 2010-11-30 16:54+0000\n"
|
||||
"PO-Revision-Date: 2010-11-30 16:58:00+0000\n"
|
||||
"Language-Team: Interlingua <http://translatewiki.net/wiki/Portal:ia>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2010-10-29 16:13:55+0000\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r75875); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2010-11-29 19:45:02+0000\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r77474); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: ia\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-ostatus\n"
|
||||
@@ -23,94 +23,94 @@ msgstr ""
|
||||
|
||||
#. TRANS: Link description for link to subscribe to a remote user.
|
||||
#. TRANS: Link text for a user to subscribe to an OStatus user.
|
||||
#: OStatusPlugin.php:229 OStatusPlugin.php:939
|
||||
#: OStatusPlugin.php:225 OStatusPlugin.php:935
|
||||
msgid "Subscribe"
|
||||
msgstr "Subscriber"
|
||||
|
||||
#. TRANS: Link description for link to join a remote group.
|
||||
#: OStatusPlugin.php:248 OStatusPlugin.php:657 actions/ostatussub.php:109
|
||||
#: OStatusPlugin.php:244 OStatusPlugin.php:653 actions/ostatussub.php:109
|
||||
msgid "Join"
|
||||
msgstr "Inscriber"
|
||||
|
||||
#. TRANSLATE: %s is a domain.
|
||||
#: OStatusPlugin.php:461
|
||||
#: OStatusPlugin.php:457
|
||||
#, php-format
|
||||
msgid "Sent from %s via OStatus"
|
||||
msgstr "Inviate de %s via OStatus"
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: OStatusPlugin.php:533
|
||||
#: OStatusPlugin.php:529
|
||||
msgid "Could not set up remote subscription."
|
||||
msgstr "Non poteva configurar le subscription remote."
|
||||
|
||||
#: OStatusPlugin.php:607
|
||||
#: OStatusPlugin.php:603
|
||||
msgid "Unfollow"
|
||||
msgstr "Non plus sequer"
|
||||
|
||||
#. TRANS: Success message for unsubscribe from user attempt through OStatus.
|
||||
#. TRANS: %1$s is the unsubscriber's name, %2$s is the unsubscribed user's name.
|
||||
#: OStatusPlugin.php:610
|
||||
#: OStatusPlugin.php:606
|
||||
#, php-format
|
||||
msgid "%1$s stopped following %2$s."
|
||||
msgstr "%1$s cessava de sequer %2$s."
|
||||
|
||||
#: OStatusPlugin.php:638
|
||||
#: OStatusPlugin.php:634
|
||||
msgid "Could not set up remote group membership."
|
||||
msgstr "Non poteva configurar le membrato del gruppo remote."
|
||||
|
||||
#. TRANS: Success message for subscribe to group attempt through OStatus.
|
||||
#. TRANS: %1$s is the member name, %2$s is the subscribed group's name.
|
||||
#: OStatusPlugin.php:660
|
||||
#: OStatusPlugin.php:656
|
||||
#, php-format
|
||||
msgid "%1$s has joined group %2$s."
|
||||
msgstr "%1$s se ha jungite al gruppo %2$s."
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: OStatusPlugin.php:669
|
||||
#: OStatusPlugin.php:665
|
||||
msgid "Failed joining remote group."
|
||||
msgstr "Falleva de facer se membro del gruppo remote."
|
||||
|
||||
#: OStatusPlugin.php:709
|
||||
#: OStatusPlugin.php:705
|
||||
msgid "Leave"
|
||||
msgstr "Quitar"
|
||||
|
||||
#. TRANS: Success message for unsubscribe from group attempt through OStatus.
|
||||
#. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name.
|
||||
#: OStatusPlugin.php:712
|
||||
#: OStatusPlugin.php:708
|
||||
#, php-format
|
||||
msgid "%1$s has left group %2$s."
|
||||
msgstr "%1$s ha quitate le gruppo %2$s."
|
||||
|
||||
#: OStatusPlugin.php:787
|
||||
#: OStatusPlugin.php:783
|
||||
msgid "Disfavor"
|
||||
msgstr "Disfavorir"
|
||||
|
||||
#. TRANS: Success message for remove a favorite notice through OStatus.
|
||||
#. TRANS: %1$s is the unfavoring user's name, %2$s is URI to the no longer favored notice.
|
||||
#: OStatusPlugin.php:790
|
||||
#: OStatusPlugin.php:786
|
||||
#, php-format
|
||||
msgid "%1$s marked notice %2$s as no longer a favorite."
|
||||
msgstr "%1$s marcava le nota %2$s como non plus favorite."
|
||||
|
||||
#. TRANS: Link text for link to remote subscribe.
|
||||
#: OStatusPlugin.php:866
|
||||
#: OStatusPlugin.php:862
|
||||
msgid "Remote"
|
||||
msgstr "Remote"
|
||||
|
||||
#. TRANS: Title for activity.
|
||||
#: OStatusPlugin.php:906
|
||||
#: OStatusPlugin.php:902
|
||||
msgid "Profile update"
|
||||
msgstr "Actualisation de profilo"
|
||||
|
||||
#. TRANS: Ping text for remote profile update through OStatus.
|
||||
#. TRANS: %s is user that updated their profile.
|
||||
#: OStatusPlugin.php:909
|
||||
#: OStatusPlugin.php:905
|
||||
#, php-format
|
||||
msgid "%s has updated their profile page."
|
||||
msgstr "%s ha actualisate su pagina de profilo."
|
||||
|
||||
#. TRANS: Plugin description.
|
||||
#: OStatusPlugin.php:954
|
||||
#: OStatusPlugin.php:950
|
||||
msgid ""
|
||||
"Follow people across social networks that implement <a href=\"http://ostatus."
|
||||
"org/\">OStatus</a>."
|
||||
@@ -355,16 +355,6 @@ msgstr "Recipeva un claffo de salmon de un actor non identificate."
|
||||
msgid "Unable to find services for %s."
|
||||
msgstr "Incapace de trovar servicios pro %s."
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/xrd.php:64
|
||||
msgid "Invalid XML."
|
||||
msgstr "XML invalide."
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/xrd.php:69
|
||||
msgid "Invalid XML, missing XRD root."
|
||||
msgstr "XML invalide, radice XRD mancante."
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/magicenvelope.php:80
|
||||
msgid "Unable to locate signer public key."
|
||||
@@ -438,7 +428,7 @@ msgstr "Invalide hub.topic \"%s\". Gruppo non existe."
|
||||
msgid "Invalid URL passed for %1$s: \"%2$s\""
|
||||
msgstr "Invalide URL passate pro %1$s: \"%2$s\""
|
||||
|
||||
#: actions/userxrd.php:59 actions/ownerxrd.php:39 actions/usersalmon.php:43
|
||||
#: actions/ownerxrd.php:39 actions/usersalmon.php:43
|
||||
msgid "No such user."
|
||||
msgstr "Iste usator non existe."
|
||||
|
||||
|
@@ -9,13 +9,13 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - OStatus\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-11-02 22:51+0000\n"
|
||||
"PO-Revision-Date: 2010-11-02 22:54:51+0000\n"
|
||||
"POT-Creation-Date: 2010-11-30 16:54+0000\n"
|
||||
"PO-Revision-Date: 2010-11-30 16:58:00+0000\n"
|
||||
"Language-Team: Macedonian <http://translatewiki.net/wiki/Portal:mk>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2010-10-29 16:13:55+0000\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r75875); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2010-11-29 19:45:02+0000\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r77474); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: mk\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-ostatus\n"
|
||||
@@ -23,94 +23,94 @@ msgstr ""
|
||||
|
||||
#. TRANS: Link description for link to subscribe to a remote user.
|
||||
#. TRANS: Link text for a user to subscribe to an OStatus user.
|
||||
#: OStatusPlugin.php:229 OStatusPlugin.php:939
|
||||
#: OStatusPlugin.php:225 OStatusPlugin.php:935
|
||||
msgid "Subscribe"
|
||||
msgstr "Претплати се"
|
||||
|
||||
#. TRANS: Link description for link to join a remote group.
|
||||
#: OStatusPlugin.php:248 OStatusPlugin.php:657 actions/ostatussub.php:109
|
||||
#: OStatusPlugin.php:244 OStatusPlugin.php:653 actions/ostatussub.php:109
|
||||
msgid "Join"
|
||||
msgstr "Зачлени се"
|
||||
|
||||
#. TRANSLATE: %s is a domain.
|
||||
#: OStatusPlugin.php:461
|
||||
#: OStatusPlugin.php:457
|
||||
#, php-format
|
||||
msgid "Sent from %s via OStatus"
|
||||
msgstr "Испратено од %s преку OStatus"
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: OStatusPlugin.php:533
|
||||
#: OStatusPlugin.php:529
|
||||
msgid "Could not set up remote subscription."
|
||||
msgstr "Не можев да ја поставам далечинската претплата."
|
||||
|
||||
#: OStatusPlugin.php:607
|
||||
#: OStatusPlugin.php:603
|
||||
msgid "Unfollow"
|
||||
msgstr "Престани со следење"
|
||||
|
||||
#. TRANS: Success message for unsubscribe from user attempt through OStatus.
|
||||
#. TRANS: %1$s is the unsubscriber's name, %2$s is the unsubscribed user's name.
|
||||
#: OStatusPlugin.php:610
|
||||
#: OStatusPlugin.php:606
|
||||
#, php-format
|
||||
msgid "%1$s stopped following %2$s."
|
||||
msgstr "%1$s престана да го/ја следи %2$s."
|
||||
|
||||
#: OStatusPlugin.php:638
|
||||
#: OStatusPlugin.php:634
|
||||
msgid "Could not set up remote group membership."
|
||||
msgstr "Не можев да го поставам членството во далечинската група."
|
||||
|
||||
#. TRANS: Success message for subscribe to group attempt through OStatus.
|
||||
#. TRANS: %1$s is the member name, %2$s is the subscribed group's name.
|
||||
#: OStatusPlugin.php:660
|
||||
#: OStatusPlugin.php:656
|
||||
#, php-format
|
||||
msgid "%1$s has joined group %2$s."
|
||||
msgstr "%1$s се зачлени во групата %2$s."
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: OStatusPlugin.php:669
|
||||
#: OStatusPlugin.php:665
|
||||
msgid "Failed joining remote group."
|
||||
msgstr "Не успеав да Ве зачленам во далечинската група."
|
||||
|
||||
#: OStatusPlugin.php:709
|
||||
#: OStatusPlugin.php:705
|
||||
msgid "Leave"
|
||||
msgstr "Напушти"
|
||||
|
||||
#. TRANS: Success message for unsubscribe from group attempt through OStatus.
|
||||
#. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name.
|
||||
#: OStatusPlugin.php:712
|
||||
#: OStatusPlugin.php:708
|
||||
#, php-format
|
||||
msgid "%1$s has left group %2$s."
|
||||
msgstr "%1$s ја напушти групата %2$s."
|
||||
|
||||
#: OStatusPlugin.php:787
|
||||
#: OStatusPlugin.php:783
|
||||
msgid "Disfavor"
|
||||
msgstr "Откажи бендисана"
|
||||
|
||||
#. TRANS: Success message for remove a favorite notice through OStatus.
|
||||
#. TRANS: %1$s is the unfavoring user's name, %2$s is URI to the no longer favored notice.
|
||||
#: OStatusPlugin.php:790
|
||||
#: OStatusPlugin.php:786
|
||||
#, php-format
|
||||
msgid "%1$s marked notice %2$s as no longer a favorite."
|
||||
msgstr "%1$s повеќе не ја бендисува забелешката %2$s."
|
||||
|
||||
#. TRANS: Link text for link to remote subscribe.
|
||||
#: OStatusPlugin.php:866
|
||||
#: OStatusPlugin.php:862
|
||||
msgid "Remote"
|
||||
msgstr "Далечински"
|
||||
|
||||
#. TRANS: Title for activity.
|
||||
#: OStatusPlugin.php:906
|
||||
#: OStatusPlugin.php:902
|
||||
msgid "Profile update"
|
||||
msgstr "Поднова на профил"
|
||||
|
||||
#. TRANS: Ping text for remote profile update through OStatus.
|
||||
#. TRANS: %s is user that updated their profile.
|
||||
#: OStatusPlugin.php:909
|
||||
#: OStatusPlugin.php:905
|
||||
#, php-format
|
||||
msgid "%s has updated their profile page."
|
||||
msgstr "%s ја поднови својата профилна страница."
|
||||
|
||||
#. TRANS: Plugin description.
|
||||
#: OStatusPlugin.php:954
|
||||
#: OStatusPlugin.php:950
|
||||
msgid ""
|
||||
"Follow people across social networks that implement <a href=\"http://ostatus."
|
||||
"org/\">OStatus</a>."
|
||||
@@ -359,16 +359,6 @@ msgstr "Примив Salmon-шамар од непознат учесник."
|
||||
msgid "Unable to find services for %s."
|
||||
msgstr "Не можев да најдам служби за %s."
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/xrd.php:64
|
||||
msgid "Invalid XML."
|
||||
msgstr "Неважечко XML."
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/xrd.php:69
|
||||
msgid "Invalid XML, missing XRD root."
|
||||
msgstr "Неважечко XML. Нема XRD-основа."
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/magicenvelope.php:80
|
||||
msgid "Unable to locate signer public key."
|
||||
@@ -441,7 +431,7 @@ msgstr "Неважечки hub.topic „%s“. Групата не постои.
|
||||
msgid "Invalid URL passed for %1$s: \"%2$s\""
|
||||
msgstr "Добив неважечка URL-адреса за %1$s: „%2$s“"
|
||||
|
||||
#: actions/userxrd.php:59 actions/ownerxrd.php:39 actions/usersalmon.php:43
|
||||
#: actions/ownerxrd.php:39 actions/usersalmon.php:43
|
||||
msgid "No such user."
|
||||
msgstr "Нема таков корисник."
|
||||
|
||||
|
@@ -10,13 +10,13 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - OStatus\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-11-02 22:51+0000\n"
|
||||
"PO-Revision-Date: 2010-11-02 22:54:51+0000\n"
|
||||
"POT-Creation-Date: 2010-11-30 16:54+0000\n"
|
||||
"PO-Revision-Date: 2010-11-30 16:58:00+0000\n"
|
||||
"Language-Team: Dutch <http://translatewiki.net/wiki/Portal:nl>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2010-10-29 16:13:55+0000\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r75875); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2010-11-29 19:45:02+0000\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r77474); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: nl\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-ostatus\n"
|
||||
@@ -24,39 +24,39 @@ msgstr ""
|
||||
|
||||
#. TRANS: Link description for link to subscribe to a remote user.
|
||||
#. TRANS: Link text for a user to subscribe to an OStatus user.
|
||||
#: OStatusPlugin.php:229 OStatusPlugin.php:939
|
||||
#: OStatusPlugin.php:225 OStatusPlugin.php:935
|
||||
msgid "Subscribe"
|
||||
msgstr "Abonneren"
|
||||
|
||||
#. TRANS: Link description for link to join a remote group.
|
||||
#: OStatusPlugin.php:248 OStatusPlugin.php:657 actions/ostatussub.php:109
|
||||
#: OStatusPlugin.php:244 OStatusPlugin.php:653 actions/ostatussub.php:109
|
||||
msgid "Join"
|
||||
msgstr "Toetreden"
|
||||
|
||||
#. TRANSLATE: %s is a domain.
|
||||
#: OStatusPlugin.php:461
|
||||
#: OStatusPlugin.php:457
|
||||
#, php-format
|
||||
msgid "Sent from %s via OStatus"
|
||||
msgstr "Verzonden vanaf %s via OStatus"
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: OStatusPlugin.php:533
|
||||
#: OStatusPlugin.php:529
|
||||
msgid "Could not set up remote subscription."
|
||||
msgstr ""
|
||||
"Het was niet mogelijk het abonnement via een andere dienst in te stellen."
|
||||
|
||||
#: OStatusPlugin.php:607
|
||||
#: OStatusPlugin.php:603
|
||||
msgid "Unfollow"
|
||||
msgstr "Niet langer volgen"
|
||||
|
||||
#. TRANS: Success message for unsubscribe from user attempt through OStatus.
|
||||
#. TRANS: %1$s is the unsubscriber's name, %2$s is the unsubscribed user's name.
|
||||
#: OStatusPlugin.php:610
|
||||
#: OStatusPlugin.php:606
|
||||
#, php-format
|
||||
msgid "%1$s stopped following %2$s."
|
||||
msgstr "%1$s volgt %2$s niet langer."
|
||||
|
||||
#: OStatusPlugin.php:638
|
||||
#: OStatusPlugin.php:634
|
||||
msgid "Could not set up remote group membership."
|
||||
msgstr ""
|
||||
"Het was niet mogelijk het groepslidmaatschap via een andere dienst in te "
|
||||
@@ -64,58 +64,58 @@ msgstr ""
|
||||
|
||||
#. TRANS: Success message for subscribe to group attempt through OStatus.
|
||||
#. TRANS: %1$s is the member name, %2$s is the subscribed group's name.
|
||||
#: OStatusPlugin.php:660
|
||||
#: OStatusPlugin.php:656
|
||||
#, php-format
|
||||
msgid "%1$s has joined group %2$s."
|
||||
msgstr "%1$s is lid geworden van de groep %2$s."
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: OStatusPlugin.php:669
|
||||
#: OStatusPlugin.php:665
|
||||
msgid "Failed joining remote group."
|
||||
msgstr ""
|
||||
"Het was niet mogelijk toe te streden to de groep van een andere dienst."
|
||||
|
||||
#: OStatusPlugin.php:709
|
||||
#: OStatusPlugin.php:705
|
||||
msgid "Leave"
|
||||
msgstr "Verlaten"
|
||||
|
||||
#. TRANS: Success message for unsubscribe from group attempt through OStatus.
|
||||
#. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name.
|
||||
#: OStatusPlugin.php:712
|
||||
#: OStatusPlugin.php:708
|
||||
#, php-format
|
||||
msgid "%1$s has left group %2$s."
|
||||
msgstr "%1$s heeft de groep %2$s verlaten"
|
||||
|
||||
#: OStatusPlugin.php:787
|
||||
#: OStatusPlugin.php:783
|
||||
msgid "Disfavor"
|
||||
msgstr "Uit favorieten verwijderen"
|
||||
|
||||
#. TRANS: Success message for remove a favorite notice through OStatus.
|
||||
#. TRANS: %1$s is the unfavoring user's name, %2$s is URI to the no longer favored notice.
|
||||
#: OStatusPlugin.php:790
|
||||
#: OStatusPlugin.php:786
|
||||
#, php-format
|
||||
msgid "%1$s marked notice %2$s as no longer a favorite."
|
||||
msgstr "%1$s heeft de mededeling %2$s als favoriet verwijderd."
|
||||
|
||||
#. TRANS: Link text for link to remote subscribe.
|
||||
#: OStatusPlugin.php:866
|
||||
#: OStatusPlugin.php:862
|
||||
msgid "Remote"
|
||||
msgstr "Via andere dienst"
|
||||
|
||||
#. TRANS: Title for activity.
|
||||
#: OStatusPlugin.php:906
|
||||
#: OStatusPlugin.php:902
|
||||
msgid "Profile update"
|
||||
msgstr "Profielupdate"
|
||||
|
||||
#. TRANS: Ping text for remote profile update through OStatus.
|
||||
#. TRANS: %s is user that updated their profile.
|
||||
#: OStatusPlugin.php:909
|
||||
#: OStatusPlugin.php:905
|
||||
#, php-format
|
||||
msgid "%s has updated their profile page."
|
||||
msgstr "Het profiel van %s is bijgewerkt."
|
||||
|
||||
#. TRANS: Plugin description.
|
||||
#: OStatusPlugin.php:954
|
||||
#: OStatusPlugin.php:950
|
||||
msgid ""
|
||||
"Follow people across social networks that implement <a href=\"http://ostatus."
|
||||
"org/\">OStatus</a>."
|
||||
@@ -372,16 +372,6 @@ msgstr "Er is een Salmonslap ontvangen van een niet-geïdentificeerde actor."
|
||||
msgid "Unable to find services for %s."
|
||||
msgstr "Het was niet mogelijk diensten te vinden voor %s."
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/xrd.php:64
|
||||
msgid "Invalid XML."
|
||||
msgstr "Ongeldige XML."
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/xrd.php:69
|
||||
msgid "Invalid XML, missing XRD root."
|
||||
msgstr "Ongeldige XML. De XRD-root mist."
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/magicenvelope.php:80
|
||||
msgid "Unable to locate signer public key."
|
||||
@@ -459,7 +449,7 @@ msgstr "Ongeldig hub.topic \"%s\". De groep bestaat niet."
|
||||
msgid "Invalid URL passed for %1$s: \"%2$s\""
|
||||
msgstr "Er is een ongeldige URL doorgegeven voor %1$s: \"%2$s\""
|
||||
|
||||
#: actions/userxrd.php:59 actions/ownerxrd.php:39 actions/usersalmon.php:43
|
||||
#: actions/ownerxrd.php:39 actions/usersalmon.php:43
|
||||
msgid "No such user."
|
||||
msgstr "Onbekende gebruiker."
|
||||
|
||||
|
@@ -9,13 +9,13 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - OStatus\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-11-02 22:51+0000\n"
|
||||
"PO-Revision-Date: 2010-11-02 22:54:51+0000\n"
|
||||
"POT-Creation-Date: 2010-11-30 16:54+0000\n"
|
||||
"PO-Revision-Date: 2010-11-30 16:58:00+0000\n"
|
||||
"Language-Team: Ukrainian <http://translatewiki.net/wiki/Portal:uk>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2010-10-29 16:13:55+0000\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r75875); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2010-11-29 19:45:02+0000\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r77474); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: uk\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-ostatus\n"
|
||||
@@ -24,94 +24,94 @@ msgstr ""
|
||||
|
||||
#. TRANS: Link description for link to subscribe to a remote user.
|
||||
#. TRANS: Link text for a user to subscribe to an OStatus user.
|
||||
#: OStatusPlugin.php:229 OStatusPlugin.php:939
|
||||
#: OStatusPlugin.php:225 OStatusPlugin.php:935
|
||||
msgid "Subscribe"
|
||||
msgstr "Підписатись"
|
||||
|
||||
#. TRANS: Link description for link to join a remote group.
|
||||
#: OStatusPlugin.php:248 OStatusPlugin.php:657 actions/ostatussub.php:109
|
||||
#: OStatusPlugin.php:244 OStatusPlugin.php:653 actions/ostatussub.php:109
|
||||
msgid "Join"
|
||||
msgstr "Приєднатися"
|
||||
|
||||
#. TRANSLATE: %s is a domain.
|
||||
#: OStatusPlugin.php:461
|
||||
#: OStatusPlugin.php:457
|
||||
#, php-format
|
||||
msgid "Sent from %s via OStatus"
|
||||
msgstr "Надіслано з %s через OStatus"
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: OStatusPlugin.php:533
|
||||
#: OStatusPlugin.php:529
|
||||
msgid "Could not set up remote subscription."
|
||||
msgstr "Не вдалося створити віддалену підписку."
|
||||
|
||||
#: OStatusPlugin.php:607
|
||||
#: OStatusPlugin.php:603
|
||||
msgid "Unfollow"
|
||||
msgstr "Не читати"
|
||||
|
||||
#. TRANS: Success message for unsubscribe from user attempt through OStatus.
|
||||
#. TRANS: %1$s is the unsubscriber's name, %2$s is the unsubscribed user's name.
|
||||
#: OStatusPlugin.php:610
|
||||
#: OStatusPlugin.php:606
|
||||
#, php-format
|
||||
msgid "%1$s stopped following %2$s."
|
||||
msgstr "%1$s припинив читати ваші дописи %2$s."
|
||||
|
||||
#: OStatusPlugin.php:638
|
||||
#: OStatusPlugin.php:634
|
||||
msgid "Could not set up remote group membership."
|
||||
msgstr "Не вдалося приєднатися до віддаленої спільноти."
|
||||
|
||||
#. TRANS: Success message for subscribe to group attempt through OStatus.
|
||||
#. TRANS: %1$s is the member name, %2$s is the subscribed group's name.
|
||||
#: OStatusPlugin.php:660
|
||||
#: OStatusPlugin.php:656
|
||||
#, php-format
|
||||
msgid "%1$s has joined group %2$s."
|
||||
msgstr "%1$s приєднався до спільноти %2$s."
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: OStatusPlugin.php:669
|
||||
#: OStatusPlugin.php:665
|
||||
msgid "Failed joining remote group."
|
||||
msgstr "Помилка приєднання до віддаленої спільноти."
|
||||
|
||||
#: OStatusPlugin.php:709
|
||||
#: OStatusPlugin.php:705
|
||||
msgid "Leave"
|
||||
msgstr "Залишити"
|
||||
|
||||
#. TRANS: Success message for unsubscribe from group attempt through OStatus.
|
||||
#. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name.
|
||||
#: OStatusPlugin.php:712
|
||||
#: OStatusPlugin.php:708
|
||||
#, php-format
|
||||
msgid "%1$s has left group %2$s."
|
||||
msgstr "%1$s залишив спільноту %2$s."
|
||||
|
||||
#: OStatusPlugin.php:787
|
||||
#: OStatusPlugin.php:783
|
||||
msgid "Disfavor"
|
||||
msgstr "Не обраний"
|
||||
|
||||
#. TRANS: Success message for remove a favorite notice through OStatus.
|
||||
#. TRANS: %1$s is the unfavoring user's name, %2$s is URI to the no longer favored notice.
|
||||
#: OStatusPlugin.php:790
|
||||
#: OStatusPlugin.php:786
|
||||
#, php-format
|
||||
msgid "%1$s marked notice %2$s as no longer a favorite."
|
||||
msgstr "%1$s позначив допис %2$s, як такий, що більше не є обраним."
|
||||
|
||||
#. TRANS: Link text for link to remote subscribe.
|
||||
#: OStatusPlugin.php:866
|
||||
#: OStatusPlugin.php:862
|
||||
msgid "Remote"
|
||||
msgstr "Віддалено"
|
||||
|
||||
#. TRANS: Title for activity.
|
||||
#: OStatusPlugin.php:906
|
||||
#: OStatusPlugin.php:902
|
||||
msgid "Profile update"
|
||||
msgstr "Оновлення профілю"
|
||||
|
||||
#. TRANS: Ping text for remote profile update through OStatus.
|
||||
#. TRANS: %s is user that updated their profile.
|
||||
#: OStatusPlugin.php:909
|
||||
#: OStatusPlugin.php:905
|
||||
#, php-format
|
||||
msgid "%s has updated their profile page."
|
||||
msgstr "%s оновив сторінку свого профілю."
|
||||
|
||||
#. TRANS: Plugin description.
|
||||
#: OStatusPlugin.php:954
|
||||
#: OStatusPlugin.php:950
|
||||
msgid ""
|
||||
"Follow people across social networks that implement <a href=\"http://ostatus."
|
||||
"org/\">OStatus</a>."
|
||||
@@ -361,16 +361,6 @@ msgstr "Отримано ляпаса від невизначеного учас
|
||||
msgid "Unable to find services for %s."
|
||||
msgstr "Не вдається знайти сервіси для %s."
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/xrd.php:64
|
||||
msgid "Invalid XML."
|
||||
msgstr "Невірний XML."
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/xrd.php:69
|
||||
msgid "Invalid XML, missing XRD root."
|
||||
msgstr "Невірний XML, корінь XRD відсутній."
|
||||
|
||||
#. TRANS: Exception.
|
||||
#: lib/magicenvelope.php:80
|
||||
msgid "Unable to locate signer public key."
|
||||
@@ -445,7 +435,7 @@ msgstr "hub.topic «%s» невірний. Спільноти не існує."
|
||||
msgid "Invalid URL passed for %1$s: \"%2$s\""
|
||||
msgstr "Для %1$s передано невірний URL: «%2$s»"
|
||||
|
||||
#: actions/userxrd.php:59 actions/ownerxrd.php:39 actions/usersalmon.php:43
|
||||
#: actions/ownerxrd.php:39 actions/usersalmon.php:43
|
||||
msgid "No such user."
|
||||
msgstr "Такого користувача немає."
|
||||
|
||||
|
Reference in New Issue
Block a user