Merge branch '0.9.x' into 1.0.x
This commit is contained in:
commit
727ea5a516
|
@ -93,6 +93,7 @@ class ApiGroupListAction extends ApiBareAuthAction
|
|||
parent::handle($args);
|
||||
|
||||
$sitename = common_config('site', 'name');
|
||||
// TRANS: %s is a user name
|
||||
$title = sprintf(_("%s's groups"), $this->user->nickname);
|
||||
$taguribase = TagURI::base();
|
||||
$id = "tag:$taguribase:Groups";
|
||||
|
@ -100,10 +101,12 @@ class ApiGroupListAction extends ApiBareAuthAction
|
|||
'usergroups',
|
||||
array('nickname' => $this->user->nickname)
|
||||
);
|
||||
|
||||
$subtitle = sprintf(
|
||||
_("Groups %1\$s is a member of on %2\$s."),
|
||||
$this->user->nickname,
|
||||
$sitename
|
||||
// TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
_("%1\$s groups %2\$s is a member of."),
|
||||
$sitename,
|
||||
$this->user->nickname
|
||||
);
|
||||
|
||||
switch($this->format) {
|
||||
|
|
|
@ -168,4 +168,11 @@ class BlockAction extends ProfileFormAction
|
|||
return;
|
||||
}
|
||||
}
|
||||
|
||||
function showScripts()
|
||||
{
|
||||
parent::showScripts();
|
||||
$this->autofocus('form_action-yes');
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -214,5 +214,12 @@ class GroupblockAction extends Action
|
|||
303);
|
||||
}
|
||||
}
|
||||
|
||||
function showScripts()
|
||||
{
|
||||
parent::showScripts();
|
||||
$this->autofocus('form_action-yes');
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -212,6 +212,7 @@ class GroupMemberListItem extends ProfileListItem
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
function showGroupBlockForm()
|
||||
{
|
||||
$user = common_current_user();
|
||||
|
@ -224,7 +225,24 @@ class GroupMemberListItem extends ProfileListItem
|
|||
$bf->show();
|
||||
$this->out->elementEnd('li');
|
||||
}
|
||||
}
|
||||
|
||||
function linkAttributes()
|
||||
{
|
||||
$aAttrs = parent::linkAttributes();
|
||||
|
||||
if (common_config('nofollow', 'members')) {
|
||||
$aAttrs['rel'] .= ' nofollow';
|
||||
}
|
||||
|
||||
return $aAttrs;
|
||||
}
|
||||
|
||||
function homepageAttributes()
|
||||
{
|
||||
if (common_config('nofollow', 'members')) {
|
||||
$aAttrs['rel'] = 'nofollow';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -32,8 +32,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
|
|||
exit(1);
|
||||
}
|
||||
|
||||
require_once INSTALLDIR.'/lib/profilelist.php';
|
||||
|
||||
/**
|
||||
* This class outputs a paginated list of profiles self-tagged with a given tag
|
||||
*
|
||||
|
@ -124,8 +122,8 @@ class PeopletagAction extends Action
|
|||
|
||||
$profile->query(sprintf($qry, $this->tag, $lim));
|
||||
|
||||
$pl = new ProfileList($profile, $this);
|
||||
$cnt = $pl->show();
|
||||
$ptl = new PeopleTagList($profile, $this); // pass the ammunition
|
||||
$cnt = $ptl->show();
|
||||
|
||||
$this->pagination($this->page > 1,
|
||||
$cnt > PROFILES_PER_PAGE,
|
||||
|
@ -146,3 +144,33 @@ class PeopletagAction extends Action
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
class PeopleTagList extends ProfileList
|
||||
{
|
||||
function newListItem($profile)
|
||||
{
|
||||
return new PeopleTagListItem($profile, $this->action);
|
||||
}
|
||||
}
|
||||
|
||||
class PeopleTagListItem extends ProfileListItem
|
||||
{
|
||||
function linkAttributes()
|
||||
{
|
||||
$aAttrs = parent::linkAttributes();
|
||||
|
||||
if (common_config('nofollow', 'peopletag')) {
|
||||
$aAttrs['rel'] .= ' nofollow';
|
||||
}
|
||||
|
||||
return $aAttrs;
|
||||
}
|
||||
|
||||
function homepageAttributes()
|
||||
{
|
||||
if (common_config('nofollow', 'peopletag')) {
|
||||
$aAttrs['rel'] = 'nofollow';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -388,10 +388,12 @@ class ShowgroupAction extends GroupDesignAction
|
|||
$this->elementStart('div', array('id' => 'entity_members',
|
||||
'class' => 'section'));
|
||||
|
||||
if (Event::handle('StartShowGroupMembersMiniList', array($this))) {
|
||||
|
||||
$this->element('h2', null, _('Members'));
|
||||
|
||||
$pml = new ProfileMiniList($member, $this);
|
||||
$cnt = $pml->show();
|
||||
$gmml = new GroupMembersMiniList($member, $this);
|
||||
$cnt = $gmml->show();
|
||||
if ($cnt == 0) {
|
||||
$this->element('p', null, _('(None)'));
|
||||
}
|
||||
|
@ -402,6 +404,9 @@ class ShowgroupAction extends GroupDesignAction
|
|||
_('All members'));
|
||||
}
|
||||
|
||||
Event::handle('EndShowGroupMembersMiniList', array($this));
|
||||
}
|
||||
|
||||
$this->elementEnd('div');
|
||||
}
|
||||
|
||||
|
@ -502,3 +507,26 @@ class GroupAdminSection extends ProfileSection
|
|||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
class GroupMembersMiniList extends ProfileMiniList
|
||||
{
|
||||
function newListItem($profile)
|
||||
{
|
||||
return new GroupMembersMiniListItem($profile, $this->action);
|
||||
}
|
||||
}
|
||||
|
||||
class GroupMembersMiniListItem extends ProfileMiniListItem
|
||||
{
|
||||
function linkAttributes()
|
||||
{
|
||||
$aAttrs = parent::linkAttributes();
|
||||
|
||||
if (common_config('nofollow', 'members')) {
|
||||
$aAttrs['rel'] .= ' nofollow';
|
||||
}
|
||||
|
||||
return $aAttrs;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -163,4 +163,22 @@ class SubscribersListItem extends SubscriptionListItem
|
|||
$bf->show();
|
||||
}
|
||||
}
|
||||
|
||||
function linkAttributes()
|
||||
{
|
||||
$aAttrs = parent::linkAttributes();
|
||||
|
||||
if (common_config('nofollow', 'subscribers')) {
|
||||
$aAttrs['rel'] .= ' nofollow';
|
||||
}
|
||||
|
||||
return $aAttrs;
|
||||
}
|
||||
|
||||
function homepageAttributes()
|
||||
{
|
||||
if (common_config('nofollow', 'subscribers')) {
|
||||
$aAttrs['rel'] = 'nofollow';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -573,6 +573,9 @@ class Memcached_DataObject extends Safe_DataObject
|
|||
if (!empty($this->id)) {
|
||||
$id .= ':' . $this->id;
|
||||
}
|
||||
if ($message instanceof PEAR_Error) {
|
||||
$message = $message->getMessage();
|
||||
}
|
||||
throw new ServerException("[$id] DB_DataObject error [$type]: $message");
|
||||
}
|
||||
|
||||
|
|
|
@ -300,4 +300,8 @@ $default =
|
|||
),
|
||||
'api' =>
|
||||
array('realm' => null),
|
||||
'nofollow' =>
|
||||
array('subscribers' => true,
|
||||
'members' => true,
|
||||
'peopletag' => true),
|
||||
);
|
||||
|
|
|
@ -289,6 +289,7 @@ function get_nice_language_list()
|
|||
*/
|
||||
function get_all_languages() {
|
||||
return array(
|
||||
'af' => array('q' => 0.8, 'lang' => 'af', 'name' => 'Afrikaans', 'direction' => 'ltr'),
|
||||
'ar' => array('q' => 0.8, 'lang' => 'ar', 'name' => 'Arabic', 'direction' => 'rtl'),
|
||||
'arz' => array('q' => 0.8, 'lang' => 'arz', 'name' => 'Egyptian Spoken Arabic', 'direction' => 'rtl'),
|
||||
'bg' => array('q' => 0.8, 'lang' => 'bg', 'name' => 'Bulgarian', 'direction' => 'ltr'),
|
||||
|
|
|
@ -139,13 +139,15 @@ class ProfileAction extends OwnerDesignAction
|
|||
$this->elementStart('div', array('id' => 'entity_subscribers',
|
||||
'class' => 'section'));
|
||||
|
||||
if (Event::handle('StartShowSubscribersMiniList', array($this))) {
|
||||
|
||||
$this->element('h2', null, _('Subscribers'));
|
||||
|
||||
$cnt = 0;
|
||||
|
||||
if (!empty($profile)) {
|
||||
$pml = new ProfileMiniList($profile, $this);
|
||||
$cnt = $pml->show();
|
||||
$sml = new SubscribersMiniList($profile, $this);
|
||||
$cnt = $sml->show();
|
||||
if ($cnt == 0) {
|
||||
$this->element('p', null, _('(None)'));
|
||||
}
|
||||
|
@ -160,6 +162,9 @@ class ProfileAction extends OwnerDesignAction
|
|||
$this->elementEnd('p');
|
||||
}
|
||||
|
||||
Event::handle('EndShowSubscribersMiniList', array($this));
|
||||
}
|
||||
|
||||
$this->elementEnd('div');
|
||||
}
|
||||
|
||||
|
@ -266,3 +271,23 @@ class ProfileAction extends OwnerDesignAction
|
|||
}
|
||||
}
|
||||
|
||||
class SubscribersMiniList extends ProfileMiniList
|
||||
{
|
||||
function newListItem($profile)
|
||||
{
|
||||
return new SubscribersMiniListItem($profile, $this->action);
|
||||
}
|
||||
}
|
||||
|
||||
class SubscribersMiniListItem extends ProfileMiniListItem
|
||||
{
|
||||
function linkAttributes()
|
||||
{
|
||||
$aAttrs = parent::linkAttributes();
|
||||
if (common_config('nofollow', 'subscribers')) {
|
||||
$aAttrs['rel'] .= ' nofollow';
|
||||
}
|
||||
return $aAttrs;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -181,9 +181,8 @@ class ProfileListItem extends Widget
|
|||
function showAvatar()
|
||||
{
|
||||
$avatar = $this->profile->getAvatar(AVATAR_STREAM_SIZE);
|
||||
$this->out->elementStart('a', array('href' => $this->profile->profileurl,
|
||||
'class' => 'url entry-title',
|
||||
'rel' => 'contact'));
|
||||
$aAttrs = $this->linkAttributes();
|
||||
$this->out->elementStart('a', $aAttrs);
|
||||
$this->out->element('img', array('src' => ($avatar) ? $avatar->displayUrl() : Avatar::defaultImage(AVATAR_STREAM_SIZE),
|
||||
'class' => 'photo avatar',
|
||||
'width' => AVATAR_STREAM_SIZE,
|
||||
|
@ -223,8 +222,8 @@ class ProfileListItem extends Widget
|
|||
{
|
||||
if (!empty($this->profile->homepage)) {
|
||||
$this->out->text(' ');
|
||||
$this->out->elementStart('a', array('href' => $this->profile->homepage,
|
||||
'class' => 'url'));
|
||||
$aAttrs = $this->homepageAttributes();
|
||||
$this->out->elementStart('a', $aAttrs);
|
||||
$this->out->raw($this->highlight($this->profile->homepage));
|
||||
$this->out->elementEnd('a');
|
||||
}
|
||||
|
@ -299,4 +298,17 @@ class ProfileListItem extends Widget
|
|||
{
|
||||
return htmlspecialchars($text);
|
||||
}
|
||||
|
||||
function linkAttributes()
|
||||
{
|
||||
return array('href' => $this->profile->profileurl,
|
||||
'class' => 'url entry-title',
|
||||
'rel' => 'contact');
|
||||
}
|
||||
|
||||
function homepageAttributes()
|
||||
{
|
||||
return array('href' => $this->profile->homepage,
|
||||
'class' => 'url');
|
||||
}
|
||||
}
|
||||
|
|
|
@ -81,10 +81,10 @@ class ProfileMiniListItem extends ProfileListItem
|
|||
function show()
|
||||
{
|
||||
$this->out->elementStart('li', 'vcard');
|
||||
$this->out->elementStart('a', array('title' => $this->profile->getBestName(),
|
||||
'href' => $this->profile->profileurl,
|
||||
'rel' => 'contact member',
|
||||
'class' => 'url'));
|
||||
if (Event::handle('StartProfileListItemProfileElements', array($this))) {
|
||||
if (Event::handle('StartProfileListItemAvatar', array($this))) {
|
||||
$aAttrs = $this->linkAttributes();
|
||||
$this->out->elementStart('a', $aAttrs);
|
||||
$avatar = $this->profile->getAvatar(AVATAR_MINI_SIZE);
|
||||
$this->out->element('img', array('src' => (($avatar) ? $avatar->displayUrl() : Avatar::defaultImage(AVATAR_MINI_SIZE)),
|
||||
'width' => AVATAR_MINI_SIZE,
|
||||
|
@ -95,6 +95,22 @@ class ProfileMiniListItem extends ProfileListItem
|
|||
$this->profile->nickname));
|
||||
$this->out->element('span', 'fn nickname', $this->profile->nickname);
|
||||
$this->out->elementEnd('a');
|
||||
Event::handle('EndProfileListItemAvatar', array($this));
|
||||
}
|
||||
$this->out->elementEnd('li');
|
||||
}
|
||||
}
|
||||
|
||||
// default; overridden for nofollow lists
|
||||
|
||||
function linkAttributes()
|
||||
{
|
||||
$aAttrs = parent::linkAttributes();
|
||||
|
||||
$aAttrs['title'] = $this->profile->getBestName();
|
||||
$aAttrs['rel'] = 'contact member'; // @todo: member? always?
|
||||
$aAttrs['class'] = 'url';
|
||||
|
||||
return $aAttrs;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,9 +1,56 @@
|
|||
Localizations for StatusNet are being maintained through TranslateWiki:
|
||||
http://translatewiki.net/wiki/Translating:StatusNet
|
||||
|
||||
Note if you are working with a direct git checkout, you will need to build
|
||||
the binary .mo files from the .po source files for translations to work
|
||||
in the web app.
|
||||
Ongoing translation work should be done there to ensure updates are
|
||||
integrated into future versions of StatusNet.
|
||||
|
||||
If gettext and GNU make are installed, you can simply run 'make' in this
|
||||
directory to build them.
|
||||
|
||||
== Building runtime translations ==
|
||||
|
||||
If you are working with a direct git checkout or have customized any
|
||||
message files, you will need to build binary .mo files from the .po
|
||||
source files for translations to work in the web app.
|
||||
|
||||
If gettext and GNU make are installed, you can simply run 'make' in the
|
||||
main StatusNet directory, and all core and plugin localizations will be
|
||||
recompiled.
|
||||
|
||||
|
||||
== Customization ==
|
||||
|
||||
User interface texts in any language can be customized by editing the
|
||||
texts in the .po source files, then rebuilding the binary .mo files
|
||||
used at runtime.
|
||||
|
||||
The default/US English texts can be overridden by adding "translations"
|
||||
to en/LC_MESSAGES/statusnet.po.
|
||||
|
||||
Note that texts you change in one language will not affect other
|
||||
languages, which are selected based on visitors' browser preferences.
|
||||
If you customizations include important information or links,
|
||||
you may wish to disable languages that you haven't customized so that
|
||||
visitors always get your text.
|
||||
|
||||
To disable all non-English languages add this to your config.php (you
|
||||
will need to edit both the en and en_GB files):
|
||||
|
||||
$config['site']['languages'] = array(
|
||||
'en-us' => array('q' => 1, 'lang' => 'en', 'name' => 'English (US)', 'direction' => 'ltr'),
|
||||
'en-gb' => array('q' => 1, 'lang' => 'en_GB', 'name' => 'English (British)', 'direction' => 'ltr'),
|
||||
'en' => array('q' => 1, 'lang' => 'en', 'name' => 'English (US)', 'direction' => 'ltr'),
|
||||
);
|
||||
|
||||
|
||||
To disable everything including British English variant:
|
||||
|
||||
$config['site']['languages'] = array(
|
||||
'en' => array('q' => 1, 'lang' => 'en', 'name' => 'English', 'direction' => 'ltr'),
|
||||
);
|
||||
|
||||
|
||||
== Plugins ==
|
||||
|
||||
This locale directory contains translations for the core StatusNet
|
||||
software only. Plugins may have their own locale subdirectories and
|
||||
their own .po and .mo files as well, so if customizing you may need
|
||||
to poke at those as well.
|
||||
|
|
6116
locale/af/LC_MESSAGES/statusnet.po
Normal file
6116
locale/af/LC_MESSAGES/statusnet.po
Normal file
File diff suppressed because it is too large
Load Diff
|
@ -9,12 +9,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:27:34+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:54:34+0000\n"
|
||||
"Language-Team: Arabic\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: ar\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -191,7 +191,7 @@ msgstr ""
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -464,14 +464,16 @@ msgstr "لست عضوًا في هذه المجموعة"
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "لم يمكن إزالة المستخدم %1$s من المجموعة %2$s."
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "مجموعات %s"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "المجموعات التي %s عضو فيها"
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
|
|
@ -10,12 +10,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:27:37+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:54:37+0000\n"
|
||||
"Language-Team: Egyptian Spoken Arabic\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: arz\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -197,7 +197,7 @@ msgstr ""
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -470,14 +470,16 @@ msgstr ""
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "ما نفعش يتشال اليوزر %1$s من الجروپ %2$s."
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "مجموعات %s"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "المجموعات التى %s عضو فيها"
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
|
|
@ -9,12 +9,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:27:40+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:54:40+0000\n"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: bg\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -191,7 +191,7 @@ msgstr "Бележки от %1$s и приятели в %2$s."
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -471,14 +471,16 @@ msgstr "Не членувате в тази група."
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "Грешка при проследяване — потребителят не е намерен."
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "Групи на %s"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "Групи, в които участва %s"
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
|
|
@ -9,12 +9,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:27:43+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:54:43+0000\n"
|
||||
"Language-Team: Dutch\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: br\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -29,7 +29,7 @@ msgstr "Moned"
|
|||
#. TRANS: Page notice
|
||||
#: actions/accessadminpanel.php:67
|
||||
msgid "Site access settings"
|
||||
msgstr ""
|
||||
msgstr "Arventennoù moned d'al lec'hienn"
|
||||
|
||||
#. TRANS: Form legend for registration form.
|
||||
#: actions/accessadminpanel.php:161
|
||||
|
@ -39,7 +39,7 @@ msgstr "Enskrivadur"
|
|||
#. TRANS: Checkbox instructions for admin setting "Private"
|
||||
#: actions/accessadminpanel.php:165
|
||||
msgid "Prohibit anonymous users (not logged in) from viewing site?"
|
||||
msgstr ""
|
||||
msgstr "Nac'h ouzh an implijerien dizanv (nann-luget) da welet al lec'hienn ?"
|
||||
|
||||
#. TRANS: Checkbox label for prohibiting anonymous users from viewing site.
|
||||
#: actions/accessadminpanel.php:167
|
||||
|
@ -190,7 +190,7 @@ msgstr "Hizivadennoù %1$s ha mignoned e %2$s!"
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -263,7 +263,7 @@ msgstr ""
|
|||
#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
|
||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||
msgid "Unable to save your design settings."
|
||||
msgstr ""
|
||||
msgstr "Dibosupl eo enrollañ an arventennoù empentiñ."
|
||||
|
||||
#: actions/apiaccountupdateprofilebackgroundimage.php:187
|
||||
#: actions/apiaccountupdateprofilecolors.php:142
|
||||
|
@ -272,7 +272,7 @@ msgstr "Diposubl eo hizivat ho design."
|
|||
|
||||
#: actions/apiblockcreate.php:105
|
||||
msgid "You cannot block yourself!"
|
||||
msgstr "Ne c'helloc'h ket ho stankañ ho unan !"
|
||||
msgstr "N'hallit ket en em stankañ hoc'h-unan !"
|
||||
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
|
@ -362,7 +362,7 @@ msgstr "Ne c'hallit ket chom hep ho heuliañ hoc'h-unan."
|
|||
|
||||
#: actions/apifriendshipsexists.php:94
|
||||
msgid "Two user ids or screen_names must be supplied."
|
||||
msgstr ""
|
||||
msgstr "Rankout a reoc'h reiñ daou id pe lesanv."
|
||||
|
||||
#: actions/apifriendshipsshow.php:134
|
||||
msgid "Could not determine source user."
|
||||
|
@ -442,7 +442,7 @@ msgstr "Ne c'hell ket an alias bezañ ar memes hini eget al lesanv."
|
|||
#: actions/apigroupleave.php:104 actions/apigroupmembership.php:91
|
||||
#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91
|
||||
msgid "Group not found!"
|
||||
msgstr "N'eo ket bet kavet ar strollad"
|
||||
msgstr "N'eo ket bet kavet ar strollad !"
|
||||
|
||||
#: actions/apigroupjoin.php:110 actions/joingroup.php:100
|
||||
msgid "You are already a member of that group."
|
||||
|
@ -466,14 +466,16 @@ msgstr "N'oc'h ket ezel eus ar strollad-mañ."
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "Diposubl eo dilemel an implijer %1$s deus ar strollad %2$s."
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "Strollad %s"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "Ezel eo %s eus ar strolladoù"
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
@ -510,7 +512,7 @@ msgstr "Fichenn direizh."
|
|||
#: actions/unsubscribe.php:69 actions/userauthorization.php:52
|
||||
#: lib/designsettings.php:294
|
||||
msgid "There was a problem with your session token. Try again, please."
|
||||
msgstr ""
|
||||
msgstr "Ur gudenn 'zo bet gant ho jedaouer dalc'h. Mar plij adklaskit."
|
||||
|
||||
#: actions/apioauthauthorize.php:135
|
||||
msgid "Invalid nickname / password!"
|
||||
|
@ -543,11 +545,11 @@ msgstr ""
|
|||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr ""
|
||||
msgstr "Kinnig ar furmskrid dic'hortoz."
|
||||
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr ""
|
||||
msgstr "C'hoant 'zo gant ur poellad kevreañ gant ho kont"
|
||||
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
|
@ -686,7 +688,7 @@ msgstr "Alioù merket gant %s"
|
|||
#: actions/apitimelinetag.php:106 actions/tagrss.php:65
|
||||
#, php-format
|
||||
msgid "Updates tagged with %1$s on %2$s!"
|
||||
msgstr ""
|
||||
msgstr "Hizivadennoù merket gant %1$s e %2$s !"
|
||||
|
||||
#: actions/apiusershow.php:96
|
||||
msgid "Not found."
|
||||
|
@ -761,7 +763,7 @@ msgstr "N'eus bet enporzhiet restr ebet."
|
|||
|
||||
#: actions/avatarsettings.php:332
|
||||
msgid "Pick a square area of the image to be your avatar"
|
||||
msgstr ""
|
||||
msgstr "Diuzit ur zonenn gant ur stumm karrez evit tremeniñ ho avatar"
|
||||
|
||||
#: actions/avatarsettings.php:347 actions/grouplogo.php:380
|
||||
msgid "Lost our file data."
|
||||
|
@ -932,7 +934,7 @@ msgstr "N'oc'h ket perc'henn ar poellad-se."
|
|||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1219
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
msgstr "Ur gudenn 'zo bet gant ho jedaouer dalc'h."
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
msgid "Delete application"
|
||||
|
@ -1080,7 +1082,7 @@ msgstr "Gweredekaat pe diweredekaat ar skeudenn foñs."
|
|||
|
||||
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||
msgid "Tile background image"
|
||||
msgstr ""
|
||||
msgstr "Adober gant ar skeudenn drekleur"
|
||||
|
||||
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||
msgid "Change colours"
|
||||
|
@ -1403,7 +1405,7 @@ msgstr "Dilamet eo bet ar chomlec'h."
|
|||
|
||||
#: actions/emailsettings.php:446 actions/smssettings.php:518
|
||||
msgid "No incoming email address."
|
||||
msgstr ""
|
||||
msgstr "Chomlec'h postel ebet o tont."
|
||||
|
||||
#: actions/emailsettings.php:456 actions/emailsettings.php:478
|
||||
#: actions/smssettings.php:528 actions/smssettings.php:552
|
||||
|
@ -1424,7 +1426,7 @@ msgstr "Ouzhpennet eo bet an ali-mañ d'ho pennrolloù dija !"
|
|||
|
||||
#: actions/favor.php:92 lib/disfavorform.php:140
|
||||
msgid "Disfavor favorite"
|
||||
msgstr ""
|
||||
msgstr "Tennañ ar pennroll"
|
||||
|
||||
#: actions/favorited.php:65 lib/popularnoticesection.php:91
|
||||
#: lib/publicgroupnav.php:93
|
||||
|
@ -2167,7 +2169,7 @@ msgstr ""
|
|||
|
||||
#: actions/noticesearch.php:78
|
||||
msgid "Text search"
|
||||
msgstr "Klask un destenn"
|
||||
msgstr "Klask testennoù"
|
||||
|
||||
#: actions/noticesearch.php:91
|
||||
#, php-format
|
||||
|
@ -2355,7 +2357,7 @@ msgstr "Cheñch ger-tremen"
|
|||
|
||||
#: actions/passwordsettings.php:69
|
||||
msgid "Change your password."
|
||||
msgstr "Kemmañ ho ger tremen."
|
||||
msgstr "Cheñch ger-tremen."
|
||||
|
||||
#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
|
||||
msgid "Password change"
|
||||
|
@ -2445,7 +2447,7 @@ msgstr ""
|
|||
|
||||
#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
|
||||
msgid "Site"
|
||||
msgstr "Lec'hien"
|
||||
msgstr "Lec'hienn"
|
||||
|
||||
#: actions/pathsadminpanel.php:238
|
||||
msgid "Server"
|
||||
|
@ -2461,7 +2463,7 @@ msgstr "Hent"
|
|||
|
||||
#: actions/pathsadminpanel.php:242
|
||||
msgid "Site path"
|
||||
msgstr "Hent al lec'hien"
|
||||
msgstr "Hent al lec'hienn"
|
||||
|
||||
#: actions/pathsadminpanel.php:246
|
||||
msgid "Path to locales"
|
||||
|
@ -3377,7 +3379,7 @@ msgstr "Aliasoù"
|
|||
|
||||
#: actions/showgroup.php:302
|
||||
msgid "Group actions"
|
||||
msgstr "Oberoù ar strollad"
|
||||
msgstr "Obererezh ar strollad"
|
||||
|
||||
#: actions/showgroup.php:338
|
||||
#, php-format
|
||||
|
@ -3407,7 +3409,7 @@ msgstr "Izili"
|
|||
#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95
|
||||
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
|
||||
msgid "(None)"
|
||||
msgstr "(hini ebet)"
|
||||
msgstr "(Hini ebet)"
|
||||
|
||||
#: actions/showgroup.php:402
|
||||
msgid "All members"
|
||||
|
@ -3654,18 +3656,16 @@ msgid "Edit site-wide message"
|
|||
msgstr "Kemennadenn nevez"
|
||||
|
||||
#: actions/sitenoticeadminpanel.php:103
|
||||
#, fuzzy
|
||||
msgid "Unable to save site notice."
|
||||
msgstr "Diposubl eo enrollañ an titouroù stankañ."
|
||||
msgstr "Diposubl eo enrollañ ali al lec'hienn."
|
||||
|
||||
#: actions/sitenoticeadminpanel.php:113
|
||||
msgid "Max length for the site-wide notice is 255 chars"
|
||||
msgstr ""
|
||||
|
||||
#: actions/sitenoticeadminpanel.php:176
|
||||
#, fuzzy
|
||||
msgid "Site notice text"
|
||||
msgstr "Eilañ an ali"
|
||||
msgstr "Testenn ali al lec'hienn"
|
||||
|
||||
#: actions/sitenoticeadminpanel.php:178
|
||||
msgid "Site-wide notice text (255 chars max; HTML okay)"
|
||||
|
@ -3957,7 +3957,7 @@ msgstr ""
|
|||
#: actions/tagother.php:65
|
||||
#, php-format
|
||||
msgid "Tag %s"
|
||||
msgstr ""
|
||||
msgstr "Merk %s"
|
||||
|
||||
#: actions/tagother.php:77 lib/userprofile.php:76
|
||||
msgid "User profile"
|
||||
|
@ -3970,7 +3970,7 @@ msgstr "Skeudenn"
|
|||
|
||||
#: actions/tagother.php:141
|
||||
msgid "Tag user"
|
||||
msgstr ""
|
||||
msgstr "Merkañ an implijer"
|
||||
|
||||
#: actions/tagother.php:151
|
||||
msgid ""
|
||||
|
@ -3985,7 +3985,7 @@ msgstr ""
|
|||
|
||||
#: actions/tagother.php:200
|
||||
msgid "Could not save tags."
|
||||
msgstr ""
|
||||
msgstr "Dibosupl eo enrollañ ar merkoù."
|
||||
|
||||
#: actions/tagother.php:236
|
||||
msgid "Use this form to add tags to your subscribers or subscriptions."
|
||||
|
@ -4001,7 +4001,7 @@ msgstr ""
|
|||
|
||||
#: actions/unblock.php:59
|
||||
msgid "You haven't blocked that user."
|
||||
msgstr ""
|
||||
msgstr "N'o peus ket stanket an implijer-mañ."
|
||||
|
||||
#: actions/unsandbox.php:72
|
||||
msgid "User is not sandboxed."
|
||||
|
@ -4087,7 +4087,7 @@ msgstr "Pedadennoù"
|
|||
|
||||
#: actions/useradminpanel.php:256
|
||||
msgid "Invitations enabled"
|
||||
msgstr ""
|
||||
msgstr "Pedadennoù gweredekaet"
|
||||
|
||||
#: actions/useradminpanel.php:258
|
||||
msgid "Whether to allow users to invite new users."
|
||||
|
@ -4127,11 +4127,11 @@ msgstr "Nac'hañ ar c'houmanant"
|
|||
|
||||
#: actions/userauthorization.php:232
|
||||
msgid "No authorization request!"
|
||||
msgstr ""
|
||||
msgstr "Reked aotreañ ebet !"
|
||||
|
||||
#: actions/userauthorization.php:254
|
||||
msgid "Subscription authorized"
|
||||
msgstr ""
|
||||
msgstr "Koumanant aotreet"
|
||||
|
||||
#: actions/userauthorization.php:256
|
||||
msgid ""
|
||||
|
@ -4473,7 +4473,7 @@ msgstr "Personel"
|
|||
#: lib/action.php:434
|
||||
msgctxt "TOOLTIP"
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr ""
|
||||
msgstr "Kemmañ ho chomlec'h postel, hoc'h avatar, ho ger-tremen, ho profil"
|
||||
|
||||
#. TRANS: Tooltip for main menu option "Services"
|
||||
#: lib/action.php:439
|
||||
|
@ -4595,7 +4595,7 @@ msgstr "FAG"
|
|||
|
||||
#: lib/action.php:759
|
||||
msgid "TOS"
|
||||
msgstr ""
|
||||
msgstr "AIH"
|
||||
|
||||
#: lib/action.php:762
|
||||
msgid "Privacy"
|
||||
|
@ -5256,7 +5256,7 @@ msgstr ""
|
|||
|
||||
#: lib/galleryaction.php:140
|
||||
msgid "Tag"
|
||||
msgstr "Merk"
|
||||
msgstr "Balizenn"
|
||||
|
||||
#: lib/galleryaction.php:141
|
||||
msgid "Choose a tag to narrow list"
|
||||
|
@ -5396,7 +5396,7 @@ msgstr "Stagañ"
|
|||
|
||||
#: lib/leaveform.php:114
|
||||
msgid "Leave"
|
||||
msgstr "Kuitañ"
|
||||
msgstr "Kuitaat"
|
||||
|
||||
#: lib/logingroupnav.php:80
|
||||
msgid "Login with a username and password"
|
||||
|
|
|
@ -10,12 +10,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:27:46+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:54:46+0000\n"
|
||||
"Language-Team: Catalan\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: ca\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -200,7 +200,7 @@ msgstr "Actualitzacions de %1$s i amics a %2$s!"
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -489,14 +489,16 @@ msgstr "No sou un membre del grup."
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "No s'ha pogut suprimir l'usuari %s del grup %s."
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "Grups de %s"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "%s grups són membres de"
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
|
|
@ -9,12 +9,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:27:49+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:54:49+0000\n"
|
||||
"Language-Team: Czech\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: cs\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -199,7 +199,7 @@ msgstr ""
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -485,14 +485,16 @@ msgstr "Neodeslal jste nám profil"
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "Nelze vytvořit OpenID z: %s"
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, fuzzy, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "Profil"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "Neodeslal jste nám profil"
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
|
|
@ -15,12 +15,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:27:52+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:54:52+0000\n"
|
||||
"Language-Team: German\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: de\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -207,7 +207,7 @@ msgstr "Aktualisierungen von %1$s und Freunden auf %2$s!"
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -488,14 +488,16 @@ msgstr "Du bist kein Mitglied dieser Gruppe."
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "Konnte Benutzer %1$s nicht aus der Gruppe %2$s entfernen."
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "%s’s Gruppen"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "Gruppen in denen %s Mitglied ist"
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
|
|
@ -10,12 +10,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:27:55+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:54:55+0000\n"
|
||||
"Language-Team: Greek\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: el\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -196,7 +196,7 @@ msgstr ""
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -478,14 +478,16 @@ msgstr ""
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "Αδύνατη η αποθήκευση του προφίλ."
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "ομάδες των χρηστών %s"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "Δεν είστε μέλος καμίας ομάδας."
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
|
6062
locale/en/LC_MESSAGES/statusnet.po
Normal file
6062
locale/en/LC_MESSAGES/statusnet.po
Normal file
File diff suppressed because it is too large
Load Diff
|
@ -10,12 +10,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:28:02+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:54:58+0000\n"
|
||||
"Language-Team: British English\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: en-gb\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -200,7 +200,7 @@ msgstr "Updates from %1$s and friends on %2$s!"
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -479,14 +479,16 @@ msgstr "You are not a member of this group."
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "Could not remove user %1$s to group %2$s."
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "%s's groups"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "Groups %s is a member of"
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -10,8 +10,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:28:13+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:55:15+0000\n"
|
||||
"Last-Translator: Ahmad Sufi Mahmudi\n"
|
||||
"Language-Team: Persian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -20,7 +20,7 @@ msgstr ""
|
|||
"X-Language-Code: fa\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
|
||||
#. TRANS: Page title
|
||||
|
@ -204,7 +204,7 @@ msgstr "به روز رسانی از %1$ و دوستان در %2$"
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -481,14 +481,16 @@ msgstr "شما یک عضو این گروه نیستید."
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "خارج شدن %s از گروه %s نا موفق بود"
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "گروههای %s"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "هست عضو %s گروه"
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
|
|
@ -10,12 +10,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:28:09+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:55:08+0000\n"
|
||||
"Language-Team: Finnish\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: fi\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -205,7 +205,7 @@ msgstr "Käyttäjän %1$s ja kavereiden päivitykset palvelussa %2$s!"
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -492,14 +492,16 @@ msgstr "Sinä et kuulu tähän ryhmään."
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "Ei voitu poistaa käyttäjää %s ryhmästä %s"
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "Käyttäjän %s ryhmät"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "Ryhmät, joiden jäsen %s on"
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
|
|
@ -14,12 +14,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:28:16+0000\n"
|
||||
"POT-Creation-Date: 2010-04-06 22:53+0000\n"
|
||||
"PO-Revision-Date: 2010-04-06 22:54:27+0000\n"
|
||||
"Language-Team: French\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64665); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: fr\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -204,7 +204,7 @@ msgstr "Statuts de %1$s et ses amis dans %2$s!"
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -485,15 +485,17 @@ msgstr "Vous n’êtes pas membre de ce groupe."
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "Impossible de retirer l’utilisateur %1$s du groupe %2$s."
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "Groupes de %s"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgstr "Groupes de %s"
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, php-format
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "Groupes de %1$s dont %2$s est membre."
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
#, php-format
|
||||
|
@ -848,7 +850,7 @@ msgstr "Ne pas bloquer cet utilisateur"
|
|||
msgid "Yes"
|
||||
msgstr "Oui"
|
||||
|
||||
#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80
|
||||
#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80
|
||||
msgid "Block this user"
|
||||
msgstr "Bloquer cet utilisateur"
|
||||
|
||||
|
@ -948,7 +950,7 @@ msgid "Conversation"
|
|||
msgstr "Conversation"
|
||||
|
||||
#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87
|
||||
#: lib/profileaction.php:224 lib/searchgroupnav.php:82
|
||||
#: lib/profileaction.php:229 lib/searchgroupnav.php:82
|
||||
msgid "Notices"
|
||||
msgstr "Avis"
|
||||
|
||||
|
@ -1642,7 +1644,7 @@ msgstr "Cet utilisateur est déjà bloqué pour le groupe."
|
|||
msgid "User is not a member of group."
|
||||
msgstr "L’utilisateur n’est pas membre du groupe."
|
||||
|
||||
#: actions/groupblock.php:136 actions/groupmembers.php:323
|
||||
#: actions/groupblock.php:136 actions/groupmembers.php:341
|
||||
msgid "Block user from group"
|
||||
msgstr "Bloquer cet utilisateur du groupe"
|
||||
|
||||
|
@ -1745,19 +1747,19 @@ msgstr "Liste des utilisateurs inscrits à ce groupe."
|
|||
msgid "Admin"
|
||||
msgstr "Administrer"
|
||||
|
||||
#: actions/groupmembers.php:355 lib/blockform.php:69
|
||||
#: actions/groupmembers.php:373 lib/blockform.php:69
|
||||
msgid "Block"
|
||||
msgstr "Bloquer"
|
||||
|
||||
#: actions/groupmembers.php:450
|
||||
#: actions/groupmembers.php:468
|
||||
msgid "Make user an admin of the group"
|
||||
msgstr "Faire de cet utilisateur un administrateur du groupe"
|
||||
|
||||
#: actions/groupmembers.php:482
|
||||
#: actions/groupmembers.php:500
|
||||
msgid "Make Admin"
|
||||
msgstr "Faire un administrateur"
|
||||
|
||||
#: actions/groupmembers.php:482
|
||||
#: actions/groupmembers.php:500
|
||||
msgid "Make this user an admin"
|
||||
msgstr "Faire de cet utilisateur un administrateur"
|
||||
|
||||
|
@ -1772,7 +1774,7 @@ msgstr "Activité de %s"
|
|||
msgid "Updates from members of %1$s on %2$s!"
|
||||
msgstr "Mises à jour des membres de %1$s dans %2$s !"
|
||||
|
||||
#: actions/groups.php:62 lib/profileaction.php:218 lib/profileaction.php:244
|
||||
#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
|
||||
#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
|
||||
msgid "Groups"
|
||||
msgstr "Groupes"
|
||||
|
@ -2718,12 +2720,12 @@ msgstr ""
|
|||
msgid "People search"
|
||||
msgstr "Recherche de personnes"
|
||||
|
||||
#: actions/peopletag.php:70
|
||||
#: actions/peopletag.php:68
|
||||
#, php-format
|
||||
msgid "Not a valid people tag: %s"
|
||||
msgstr "Cette marque est invalide : %s"
|
||||
|
||||
#: actions/peopletag.php:144
|
||||
#: actions/peopletag.php:142
|
||||
#, php-format
|
||||
msgid "Users self-tagged with %1$s - page %2$d"
|
||||
msgstr "Utilisateurs marqués par eux-mêmes avec %1$s - page %2$d"
|
||||
|
@ -3457,8 +3459,8 @@ msgstr "Organisation"
|
|||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:439
|
||||
#: lib/profileaction.php:182
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:444
|
||||
#: lib/profileaction.php:187
|
||||
msgid "Statistics"
|
||||
msgstr "Statistiques"
|
||||
|
||||
|
@ -3620,25 +3622,25 @@ msgstr "Fil des avis du groupe %s (Atom)"
|
|||
msgid "FOAF for %s group"
|
||||
msgstr "ami d’un ami pour le groupe %s"
|
||||
|
||||
#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91
|
||||
#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91
|
||||
msgid "Members"
|
||||
msgstr "Membres"
|
||||
|
||||
#: actions/showgroup.php:396 lib/profileaction.php:117
|
||||
#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95
|
||||
#: actions/showgroup.php:398 lib/profileaction.php:117
|
||||
#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
|
||||
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
|
||||
msgid "(None)"
|
||||
msgstr "(aucun)"
|
||||
|
||||
#: actions/showgroup.php:402
|
||||
#: actions/showgroup.php:404
|
||||
msgid "All members"
|
||||
msgstr "Tous les membres"
|
||||
|
||||
#: actions/showgroup.php:442
|
||||
#: actions/showgroup.php:447
|
||||
msgid "Created"
|
||||
msgstr "Créé"
|
||||
|
||||
#: actions/showgroup.php:458
|
||||
#: actions/showgroup.php:463
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3654,7 +3656,7 @@ msgstr ""
|
|||
"action.register%%%%) pour devenir membre de ce groupe et bien plus ! ([En "
|
||||
"lire plus](%%%%doc.help%%%%))"
|
||||
|
||||
#: actions/showgroup.php:464
|
||||
#: actions/showgroup.php:469
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3667,7 +3669,7 @@ msgstr ""
|
|||
"logiciel libre [StatusNet](http://status.net/). Ses membres partagent des "
|
||||
"messages courts à propos de leur vie et leurs intérêts. "
|
||||
|
||||
#: actions/showgroup.php:492
|
||||
#: actions/showgroup.php:497
|
||||
msgid "Admins"
|
||||
msgstr "Administrateurs"
|
||||
|
||||
|
@ -6288,7 +6290,7 @@ msgstr "Marques dans les avis de %s"
|
|||
msgid "Unknown"
|
||||
msgstr "Inconnu"
|
||||
|
||||
#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82
|
||||
#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
|
||||
msgid "Subscriptions"
|
||||
msgstr "Abonnements"
|
||||
|
||||
|
@ -6296,28 +6298,28 @@ msgstr "Abonnements"
|
|||
msgid "All subscriptions"
|
||||
msgstr "Tous les abonnements"
|
||||
|
||||
#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90
|
||||
#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
|
||||
msgid "Subscribers"
|
||||
msgstr "Abonnés"
|
||||
|
||||
#: lib/profileaction.php:159
|
||||
#: lib/profileaction.php:161
|
||||
msgid "All subscribers"
|
||||
msgstr "Tous les abonnés"
|
||||
|
||||
#: lib/profileaction.php:186
|
||||
#: lib/profileaction.php:191
|
||||
msgid "User ID"
|
||||
msgstr "ID de l’utilisateur"
|
||||
|
||||
#: lib/profileaction.php:191
|
||||
#: lib/profileaction.php:196
|
||||
msgid "Member since"
|
||||
msgstr "Membre depuis"
|
||||
|
||||
#. TRANS: Average count of posts made per day since account registration
|
||||
#: lib/profileaction.php:230
|
||||
#: lib/profileaction.php:235
|
||||
msgid "Daily average"
|
||||
msgstr "Moyenne journalière"
|
||||
|
||||
#: lib/profileaction.php:259
|
||||
#: lib/profileaction.php:264
|
||||
msgid "All groups"
|
||||
msgstr "Tous les groupes"
|
||||
|
||||
|
|
|
@ -8,12 +8,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:28:19+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:55:21+0000\n"
|
||||
"Language-Team: Irish\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: ga\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -200,7 +200,7 @@ msgstr "Actualizacións dende %1$s e amigos en %2$s!"
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -490,14 +490,16 @@ msgstr "Non estás suscrito a ese perfil"
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "Non podes seguir a este usuario: o Usuario non se atopa."
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, fuzzy, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "Usuarios"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "%1s non é unha orixe fiable."
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
|
|
@ -7,12 +7,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:28:26+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:55:24+0000\n"
|
||||
"Language-Team: Hebrew\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: he\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -197,7 +197,7 @@ msgstr ""
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -483,14 +483,16 @@ msgstr "לא שלחנו אלינו את הפרופיל הזה"
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "נכשלה יצירת OpenID מתוך: %s"
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, fuzzy, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "פרופיל"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "לא שלחנו אלינו את הפרופיל הזה"
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
|
|
@ -9,12 +9,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:28:29+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:55:27+0000\n"
|
||||
"Language-Team: Dutch\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: hsb\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -191,7 +191,7 @@ msgstr ""
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -464,14 +464,16 @@ msgstr "Njejsy čłon tuteje skupiny."
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "Njebě móžno wužiwarja %1$s ze skupiny %2$s wotstronić."
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
|
|
@ -8,12 +8,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:28:32+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:55:30+0000\n"
|
||||
"Language-Team: Interlingua\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: ia\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -197,7 +197,7 @@ msgstr "Actualisationes de %1$s e su amicos in %2$s!"
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -474,14 +474,16 @@ msgstr "Tu non es membro de iste gruppo."
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "Non poteva remover le usator %1$s del gruppo %2$s."
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "Gruppos de %s"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "Gruppos del quales %s es membro"
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
@ -777,9 +779,8 @@ msgid "Crop"
|
|||
msgstr "Taliar"
|
||||
|
||||
#: actions/avatarsettings.php:305
|
||||
#, fuzzy
|
||||
msgid "No file uploaded."
|
||||
msgstr "Nulle profilo specificate."
|
||||
msgstr "Nulle file incargate."
|
||||
|
||||
#: actions/avatarsettings.php:332
|
||||
msgid "Pick a square area of the image to be your avatar"
|
||||
|
@ -3766,9 +3767,8 @@ msgid "Unknown language \"%s\"."
|
|||
msgstr "Lingua \"%s\" incognite."
|
||||
|
||||
#: actions/siteadminpanel.php:165
|
||||
#, fuzzy
|
||||
msgid "Minimum text limit is 0 (unlimited)."
|
||||
msgstr "Le limite minimal del texto es 140 characteres."
|
||||
msgstr "Le limite minimal del texto es 0 (illimitate)."
|
||||
|
||||
#: actions/siteadminpanel.php:171
|
||||
msgid "Dupe limit must 1 or more seconds."
|
||||
|
@ -4938,6 +4938,8 @@ msgstr "Ante"
|
|||
#: lib/activity.php:120
|
||||
msgid "Expecting a root feed element but got a whole XML document."
|
||||
msgstr ""
|
||||
"Expectava le elemento-radice de un syndication, ma recipeva un documento XML "
|
||||
"integre."
|
||||
|
||||
#: lib/activityutils.php:208
|
||||
msgid "Can't handle remote content yet."
|
||||
|
@ -6250,7 +6252,7 @@ msgstr "Membro depost"
|
|||
#. TRANS: Average count of posts made per day since account registration
|
||||
#: lib/profileaction.php:230
|
||||
msgid "Daily average"
|
||||
msgstr ""
|
||||
msgstr "Media de cata die"
|
||||
|
||||
#: lib/profileaction.php:259
|
||||
msgid "All groups"
|
||||
|
@ -6424,9 +6426,9 @@ msgid "Unsubscribe"
|
|||
msgstr "Cancellar subscription"
|
||||
|
||||
#: lib/usernoprofileexception.php:58
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "User %s (%d) has no profile record."
|
||||
msgstr "Le usator non ha un profilo."
|
||||
msgstr "Le usator %s (%d) non ha un profilo."
|
||||
|
||||
#: lib/userprofile.php:117
|
||||
msgid "Edit Avatar"
|
||||
|
@ -6438,7 +6440,7 @@ msgstr "Actiones de usator"
|
|||
|
||||
#: lib/userprofile.php:237
|
||||
msgid "User deletion in progress..."
|
||||
msgstr ""
|
||||
msgstr "Deletion del usator in curso…"
|
||||
|
||||
#: lib/userprofile.php:263
|
||||
msgid "Edit profile settings"
|
||||
|
|
|
@ -8,12 +8,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:28:35+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:55:33+0000\n"
|
||||
"Language-Team: Icelandic\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: is\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -199,7 +199,7 @@ msgstr "Færslur frá %1$s og vinum á %2$s!"
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -485,14 +485,16 @@ msgstr "Þú ert ekki meðlimur í þessum hópi."
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "Gat ekki fjarlægt notandann %s úr hópnum %s"
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, fuzzy, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "Hópar %s"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "Hópar sem %s er meðlimur í"
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
|
|
@ -9,12 +9,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:28:39+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:55:36+0000\n"
|
||||
"Language-Team: Italian\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: it\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -201,7 +201,7 @@ msgstr "Messaggi da %1$s e amici su %2$s!"
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -480,14 +480,16 @@ msgstr "Non fai parte di questo gruppo."
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "Impossibile rimuovere l'utente %1$s dal gruppo %2$s."
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "Gruppi di %s"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "Gruppi di cui %s fa parte"
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
|
|
@ -11,12 +11,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:28:43+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:55:39+0000\n"
|
||||
"Language-Team: Japanese\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: ja\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -200,7 +200,7 @@ msgstr "%2$s に %1$s と友人からの更新があります!"
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -480,14 +480,16 @@ msgstr "このグループのメンバーではありません。"
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "ユーザ %1$s をグループ %2$s から削除できません。"
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "%s のグループ"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "グループ %s はメンバー"
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
|
|
@ -8,12 +8,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:28:46+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:55:43+0000\n"
|
||||
"Language-Team: Korean\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: ko\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -191,7 +191,7 @@ msgstr "%2$s에 있는 %1$s 및 친구들의 업데이트!"
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -328,22 +328,20 @@ msgid "No status found with that ID."
|
|||
msgstr "그 ID로 발견된 상태가 없습니다."
|
||||
|
||||
#: actions/apifavoritecreate.php:119
|
||||
#, fuzzy
|
||||
msgid "This status is already a favorite."
|
||||
msgstr "이 게시글은 이미 좋아하는 게시글입니다."
|
||||
msgstr "이 소식은 이미 관심소식으로 등록되어 있습니다."
|
||||
|
||||
#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279
|
||||
msgid "Could not create favorite."
|
||||
msgstr "좋아하는 게시글을 생성할 수 없습니다."
|
||||
msgstr "관심소식을 생성할 수 없습니다."
|
||||
|
||||
#: actions/apifavoritedestroy.php:122
|
||||
#, fuzzy
|
||||
msgid "That status is not a favorite."
|
||||
msgstr "이 메시지는 favorite이 아닙니다."
|
||||
msgstr "이 소식은 관심소식이 아닙니다."
|
||||
|
||||
#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87
|
||||
msgid "Could not delete favorite."
|
||||
msgstr "favorite을 삭제할 수 없습니다."
|
||||
msgstr "관심소식을 삭제할 수 없습니다."
|
||||
|
||||
#: actions/apifriendshipscreate.php:109
|
||||
msgid "Could not follow user: User not found."
|
||||
|
@ -449,7 +447,6 @@ msgid "Group not found!"
|
|||
msgstr "그룹을 찾을 수 없습니다."
|
||||
|
||||
#: actions/apigroupjoin.php:110 actions/joingroup.php:100
|
||||
#, fuzzy
|
||||
msgid "You are already a member of that group."
|
||||
msgstr "당신은 이미 이 그룹의 멤버입니다."
|
||||
|
||||
|
@ -463,7 +460,6 @@ msgid "Could not join user %1$s to group %2$s."
|
|||
msgstr "이용자 %1$s 의 그룹 %2$s 가입에 실패했습니다."
|
||||
|
||||
#: actions/apigroupleave.php:114
|
||||
#, fuzzy
|
||||
msgid "You are not a member of this group."
|
||||
msgstr "당신은 해당 그룹의 멤버가 아닙니다."
|
||||
|
||||
|
@ -472,14 +468,16 @@ msgstr "당신은 해당 그룹의 멤버가 아닙니다."
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "그룹 %s에서 %s 사용자를 제거할 수 없습니다."
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "%s의 그룹들"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "%s 그룹들은 의 멤버입니다."
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
@ -632,9 +630,9 @@ msgstr "발견된 ID의 상태가 없습니다."
|
|||
|
||||
#: actions/apistatusesupdate.php:161 actions/newnotice.php:155
|
||||
#: lib/mailhandler.php:60
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "That's too long. Max notice size is %d chars."
|
||||
msgstr "너무 깁니다. 통지의 최대 길이는 140글자 입니다."
|
||||
msgstr "너무 깁니다. 통지의 최대 길이는 %d 글자 입니다."
|
||||
|
||||
#: actions/apistatusesupdate.php:202
|
||||
msgid "Not found"
|
||||
|
@ -1047,7 +1045,7 @@ msgstr ""
|
|||
|
||||
#: actions/designadminpanel.php:73
|
||||
msgid "Design settings for this StatusNet site."
|
||||
msgstr ""
|
||||
msgstr "이 StatusNet 사이트에 대한 디자인 설정"
|
||||
|
||||
#: actions/designadminpanel.php:275
|
||||
msgid "Invalid logo URL."
|
||||
|
@ -1067,28 +1065,25 @@ msgid "Site logo"
|
|||
msgstr "사이트 로고"
|
||||
|
||||
#: actions/designadminpanel.php:387
|
||||
#, fuzzy
|
||||
msgid "Change theme"
|
||||
msgstr "변환"
|
||||
msgstr "테마 바꾸기"
|
||||
|
||||
#: actions/designadminpanel.php:404
|
||||
#, fuzzy
|
||||
msgid "Site theme"
|
||||
msgstr "사이트 공지"
|
||||
msgstr "사이트 테마"
|
||||
|
||||
#: actions/designadminpanel.php:405
|
||||
#, fuzzy
|
||||
msgid "Theme for the site."
|
||||
msgstr "이 사이트로부터 로그아웃"
|
||||
msgstr "사이트에 대한 테마"
|
||||
|
||||
#: actions/designadminpanel.php:417 lib/designsettings.php:101
|
||||
msgid "Change background image"
|
||||
msgstr ""
|
||||
msgstr "배경 이미지 바꾸기"
|
||||
|
||||
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||
#: lib/designsettings.php:178
|
||||
msgid "Background"
|
||||
msgstr ""
|
||||
msgstr "배경"
|
||||
|
||||
#: actions/designadminpanel.php:427
|
||||
#, php-format
|
||||
|
@ -1864,9 +1859,8 @@ msgstr ""
|
|||
"래 당신의 주소와 환경설정을 조정하세요."
|
||||
|
||||
#: actions/imsettings.php:89
|
||||
#, fuzzy
|
||||
msgid "IM is not available."
|
||||
msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다."
|
||||
msgstr "인스턴트 메신저를 사용할 수 없습니다."
|
||||
|
||||
#: actions/imsettings.php:106
|
||||
msgid "Current confirmed Jabber/GTalk address."
|
||||
|
|
|
@ -9,12 +9,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:28:49+0000\n"
|
||||
"POT-Creation-Date: 2010-04-06 22:53+0000\n"
|
||||
"PO-Revision-Date: 2010-04-06 22:54:54+0000\n"
|
||||
"Language-Team: Macedonian\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64665); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: mk\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -201,7 +201,7 @@ msgstr "Подновувања од %1$s и пријатели на %2$s!"
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -481,15 +481,17 @@ msgstr "Не членувате во оваа група."
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "Не можев да го отстранам корисникот %1$s од групата %2$s."
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "%s групи"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgstr "Групи кадешто членува %s"
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, php-format
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "%1$s групи кадешто членува %2$s."
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
#, php-format
|
||||
|
@ -838,7 +840,7 @@ msgstr "Не го блокирај корисников"
|
|||
msgid "Yes"
|
||||
msgstr "Да"
|
||||
|
||||
#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80
|
||||
#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80
|
||||
msgid "Block this user"
|
||||
msgstr "Блокирај го корисников"
|
||||
|
||||
|
@ -938,7 +940,7 @@ msgid "Conversation"
|
|||
msgstr "Разговор"
|
||||
|
||||
#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87
|
||||
#: lib/profileaction.php:224 lib/searchgroupnav.php:82
|
||||
#: lib/profileaction.php:229 lib/searchgroupnav.php:82
|
||||
msgid "Notices"
|
||||
msgstr "Забелешки"
|
||||
|
||||
|
@ -1634,7 +1636,7 @@ msgstr "Корисникот е веќе блокиран од оваа груп
|
|||
msgid "User is not a member of group."
|
||||
msgstr "Корисникот не членува во групата."
|
||||
|
||||
#: actions/groupblock.php:136 actions/groupmembers.php:323
|
||||
#: actions/groupblock.php:136 actions/groupmembers.php:341
|
||||
msgid "Block user from group"
|
||||
msgstr "Блокирај корисник од група"
|
||||
|
||||
|
@ -1738,19 +1740,19 @@ msgstr "Листа на корисниците на овааг група."
|
|||
msgid "Admin"
|
||||
msgstr "Администратор"
|
||||
|
||||
#: actions/groupmembers.php:355 lib/blockform.php:69
|
||||
#: actions/groupmembers.php:373 lib/blockform.php:69
|
||||
msgid "Block"
|
||||
msgstr "Блокирај"
|
||||
|
||||
#: actions/groupmembers.php:450
|
||||
#: actions/groupmembers.php:468
|
||||
msgid "Make user an admin of the group"
|
||||
msgstr "Направи го корисникот администратор на групата"
|
||||
|
||||
#: actions/groupmembers.php:482
|
||||
#: actions/groupmembers.php:500
|
||||
msgid "Make Admin"
|
||||
msgstr "Направи го/ја администратор"
|
||||
|
||||
#: actions/groupmembers.php:482
|
||||
#: actions/groupmembers.php:500
|
||||
msgid "Make this user an admin"
|
||||
msgstr "Направи го корисникот администратор"
|
||||
|
||||
|
@ -1765,7 +1767,7 @@ msgstr "Историја на %s"
|
|||
msgid "Updates from members of %1$s on %2$s!"
|
||||
msgstr "Подновувања од членови на %1$s на %2$s!"
|
||||
|
||||
#: actions/groups.php:62 lib/profileaction.php:218 lib/profileaction.php:244
|
||||
#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
|
||||
#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
|
||||
msgid "Groups"
|
||||
msgstr "Групи"
|
||||
|
@ -2698,12 +2700,12 @@ msgstr ""
|
|||
msgid "People search"
|
||||
msgstr "Пребарување на луѓе"
|
||||
|
||||
#: actions/peopletag.php:70
|
||||
#: actions/peopletag.php:68
|
||||
#, php-format
|
||||
msgid "Not a valid people tag: %s"
|
||||
msgstr "Не е важечка ознака за луѓе: %s"
|
||||
|
||||
#: actions/peopletag.php:144
|
||||
#: actions/peopletag.php:142
|
||||
#, php-format
|
||||
msgid "Users self-tagged with %1$s - page %2$d"
|
||||
msgstr "Користници самоозначени со %1$s - стр. %2$d"
|
||||
|
@ -3431,8 +3433,8 @@ msgstr "Организација"
|
|||
msgid "Description"
|
||||
msgstr "Опис"
|
||||
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:439
|
||||
#: lib/profileaction.php:182
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:444
|
||||
#: lib/profileaction.php:187
|
||||
msgid "Statistics"
|
||||
msgstr "Статистики"
|
||||
|
||||
|
@ -3596,25 +3598,25 @@ msgstr "Канал со забелешки за групата%s (Atom)"
|
|||
msgid "FOAF for %s group"
|
||||
msgstr "FOAF за групата %s"
|
||||
|
||||
#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91
|
||||
#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91
|
||||
msgid "Members"
|
||||
msgstr "Членови"
|
||||
|
||||
#: actions/showgroup.php:396 lib/profileaction.php:117
|
||||
#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95
|
||||
#: actions/showgroup.php:398 lib/profileaction.php:117
|
||||
#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
|
||||
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
|
||||
msgid "(None)"
|
||||
msgstr "(Нема)"
|
||||
|
||||
#: actions/showgroup.php:402
|
||||
#: actions/showgroup.php:404
|
||||
msgid "All members"
|
||||
msgstr "Сите членови"
|
||||
|
||||
#: actions/showgroup.php:442
|
||||
#: actions/showgroup.php:447
|
||||
msgid "Created"
|
||||
msgstr "Создадено"
|
||||
|
||||
#: actions/showgroup.php:458
|
||||
#: actions/showgroup.php:463
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3630,7 +3632,7 @@ msgstr ""
|
|||
"се](%%%%action.register%%%%) за да станете дел од оваа група и многу повеќе! "
|
||||
"([Прочитајте повеќе](%%%%doc.help%%%%))"
|
||||
|
||||
#: actions/showgroup.php:464
|
||||
#: actions/showgroup.php:469
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3643,7 +3645,7 @@ msgstr ""
|
|||
"слободната програмска алатка [StatusNet](http://status.net/). Нејзините "
|
||||
"членови си разменуваат кратки пораки за нивниот живот и интереси. "
|
||||
|
||||
#: actions/showgroup.php:492
|
||||
#: actions/showgroup.php:497
|
||||
msgid "Admins"
|
||||
msgstr "Администратори"
|
||||
|
||||
|
@ -6248,7 +6250,7 @@ msgstr "Ознаки во забелешките на %s"
|
|||
msgid "Unknown"
|
||||
msgstr "Непознато"
|
||||
|
||||
#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82
|
||||
#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
|
||||
msgid "Subscriptions"
|
||||
msgstr "Претплати"
|
||||
|
||||
|
@ -6256,28 +6258,28 @@ msgstr "Претплати"
|
|||
msgid "All subscriptions"
|
||||
msgstr "Сите претплати"
|
||||
|
||||
#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90
|
||||
#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
|
||||
msgid "Subscribers"
|
||||
msgstr "Претплатници"
|
||||
|
||||
#: lib/profileaction.php:159
|
||||
#: lib/profileaction.php:161
|
||||
msgid "All subscribers"
|
||||
msgstr "Сите претплатници"
|
||||
|
||||
#: lib/profileaction.php:186
|
||||
#: lib/profileaction.php:191
|
||||
msgid "User ID"
|
||||
msgstr "Кориснички ID"
|
||||
|
||||
#: lib/profileaction.php:191
|
||||
#: lib/profileaction.php:196
|
||||
msgid "Member since"
|
||||
msgstr "Член од"
|
||||
|
||||
#. TRANS: Average count of posts made per day since account registration
|
||||
#: lib/profileaction.php:230
|
||||
#: lib/profileaction.php:235
|
||||
msgid "Daily average"
|
||||
msgstr "Дневен просек"
|
||||
|
||||
#: lib/profileaction.php:259
|
||||
#: lib/profileaction.php:264
|
||||
msgid "All groups"
|
||||
msgstr "Сите групи"
|
||||
|
||||
|
|
|
@ -9,12 +9,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:28:52+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:55:50+0000\n"
|
||||
"Language-Team: Norwegian (bokmål)\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: no\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -197,7 +197,7 @@ msgstr "Oppdateringer fra %1$s og venner på %2$s!"
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -476,14 +476,16 @@ msgstr "Du er ikke et medlem av denne gruppen."
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "Kunne ikke fjerne bruker %1$s fra gruppe %2$s."
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "%s sine grupper"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "%s er ikke medlem av noen gruppe."
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
|
|
@ -10,12 +10,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:28:58+0000\n"
|
||||
"POT-Creation-Date: 2010-04-06 22:53+0000\n"
|
||||
"PO-Revision-Date: 2010-04-06 22:55:04+0000\n"
|
||||
"Language-Team: Dutch\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64665); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: nl\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -200,7 +200,7 @@ msgstr "Updates van %1$s en vrienden op %2$s."
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -485,15 +485,17 @@ msgstr "U bent geen lid van deze groep."
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "Het was niet mogelijk gebruiker %1$s uit de group %2$s te verwijderen."
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "Groepen van %s"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgstr "Groepen waar %s lid van is"
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, php-format
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "Groepen op de site %1$s waar %2$s lid van is."
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
#, php-format
|
||||
|
@ -847,7 +849,7 @@ msgstr "Gebruiker niet blokkeren"
|
|||
msgid "Yes"
|
||||
msgstr "Ja"
|
||||
|
||||
#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80
|
||||
#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80
|
||||
msgid "Block this user"
|
||||
msgstr "Deze gebruiker blokkeren"
|
||||
|
||||
|
@ -947,7 +949,7 @@ msgid "Conversation"
|
|||
msgstr "Dialoog"
|
||||
|
||||
#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87
|
||||
#: lib/profileaction.php:224 lib/searchgroupnav.php:82
|
||||
#: lib/profileaction.php:229 lib/searchgroupnav.php:82
|
||||
msgid "Notices"
|
||||
msgstr "Mededelingen"
|
||||
|
||||
|
@ -1648,7 +1650,7 @@ msgstr "Deze gebruiker is al de toegang tot de groep ontzegd."
|
|||
msgid "User is not a member of group."
|
||||
msgstr "De gebruiker is geen lid van de groep."
|
||||
|
||||
#: actions/groupblock.php:136 actions/groupmembers.php:323
|
||||
#: actions/groupblock.php:136 actions/groupmembers.php:341
|
||||
msgid "Block user from group"
|
||||
msgstr "Gebruiker toegang tot de groep blokkeren"
|
||||
|
||||
|
@ -1752,19 +1754,19 @@ msgstr "Ledenlijst van deze groep"
|
|||
msgid "Admin"
|
||||
msgstr "Beheerder"
|
||||
|
||||
#: actions/groupmembers.php:355 lib/blockform.php:69
|
||||
#: actions/groupmembers.php:373 lib/blockform.php:69
|
||||
msgid "Block"
|
||||
msgstr "Blokkeren"
|
||||
|
||||
#: actions/groupmembers.php:450
|
||||
#: actions/groupmembers.php:468
|
||||
msgid "Make user an admin of the group"
|
||||
msgstr "Deze gebruiker groepsbeheerder maken"
|
||||
|
||||
#: actions/groupmembers.php:482
|
||||
#: actions/groupmembers.php:500
|
||||
msgid "Make Admin"
|
||||
msgstr "Beheerder maken"
|
||||
|
||||
#: actions/groupmembers.php:482
|
||||
#: actions/groupmembers.php:500
|
||||
msgid "Make this user an admin"
|
||||
msgstr "Deze gebruiker beheerder maken"
|
||||
|
||||
|
@ -1779,7 +1781,7 @@ msgstr "%s tijdlijn"
|
|||
msgid "Updates from members of %1$s on %2$s!"
|
||||
msgstr "Updates voor leden van %1$s op %2$s."
|
||||
|
||||
#: actions/groups.php:62 lib/profileaction.php:218 lib/profileaction.php:244
|
||||
#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
|
||||
#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
|
||||
msgid "Groups"
|
||||
msgstr "Groepen"
|
||||
|
@ -2715,12 +2717,12 @@ msgstr ""
|
|||
msgid "People search"
|
||||
msgstr "Gebruikers zoeken"
|
||||
|
||||
#: actions/peopletag.php:70
|
||||
#: actions/peopletag.php:68
|
||||
#, php-format
|
||||
msgid "Not a valid people tag: %s"
|
||||
msgstr "Geen geldig gebruikerslabel: %s"
|
||||
|
||||
#: actions/peopletag.php:144
|
||||
#: actions/peopletag.php:142
|
||||
#, php-format
|
||||
msgid "Users self-tagged with %1$s - page %2$d"
|
||||
msgstr "Gebruikers die zichzelf met %1$s hebben gelabeld - pagina %2$d"
|
||||
|
@ -3452,8 +3454,8 @@ msgstr "Organisatie"
|
|||
msgid "Description"
|
||||
msgstr "Beschrijving"
|
||||
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:439
|
||||
#: lib/profileaction.php:182
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:444
|
||||
#: lib/profileaction.php:187
|
||||
msgid "Statistics"
|
||||
msgstr "Statistieken"
|
||||
|
||||
|
@ -3617,25 +3619,25 @@ msgstr "Mededelingenfeed voor groep %s (Atom)"
|
|||
msgid "FOAF for %s group"
|
||||
msgstr "Vriend van een vriend voor de groep %s"
|
||||
|
||||
#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91
|
||||
#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91
|
||||
msgid "Members"
|
||||
msgstr "Leden"
|
||||
|
||||
#: actions/showgroup.php:396 lib/profileaction.php:117
|
||||
#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95
|
||||
#: actions/showgroup.php:398 lib/profileaction.php:117
|
||||
#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
|
||||
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
|
||||
msgid "(None)"
|
||||
msgstr "(geen)"
|
||||
|
||||
#: actions/showgroup.php:402
|
||||
#: actions/showgroup.php:404
|
||||
msgid "All members"
|
||||
msgstr "Alle leden"
|
||||
|
||||
#: actions/showgroup.php:442
|
||||
#: actions/showgroup.php:447
|
||||
msgid "Created"
|
||||
msgstr "Aangemaakt"
|
||||
|
||||
#: actions/showgroup.php:458
|
||||
#: actions/showgroup.php:463
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3651,7 +3653,7 @@ msgstr ""
|
|||
"lid te worden van deze groep en nog veel meer! [Meer lezen...](%%%%doc.help%%"
|
||||
"%%)"
|
||||
|
||||
#: actions/showgroup.php:464
|
||||
#: actions/showgroup.php:469
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3664,7 +3666,7 @@ msgstr ""
|
|||
"[StatusNet](http://status.net/). De leden wisselen korte mededelingen uit "
|
||||
"over hun ervaringen en interesses. "
|
||||
|
||||
#: actions/showgroup.php:492
|
||||
#: actions/showgroup.php:497
|
||||
msgid "Admins"
|
||||
msgstr "Beheerders"
|
||||
|
||||
|
@ -6295,7 +6297,7 @@ msgstr "Labels in de mededelingen van %s"
|
|||
msgid "Unknown"
|
||||
msgstr "Onbekend"
|
||||
|
||||
#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82
|
||||
#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
|
||||
msgid "Subscriptions"
|
||||
msgstr "Abonnementen"
|
||||
|
||||
|
@ -6303,28 +6305,28 @@ msgstr "Abonnementen"
|
|||
msgid "All subscriptions"
|
||||
msgstr "Alle abonnementen"
|
||||
|
||||
#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90
|
||||
#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
|
||||
msgid "Subscribers"
|
||||
msgstr "Abonnees"
|
||||
|
||||
#: lib/profileaction.php:159
|
||||
#: lib/profileaction.php:161
|
||||
msgid "All subscribers"
|
||||
msgstr "Alle abonnees"
|
||||
|
||||
#: lib/profileaction.php:186
|
||||
#: lib/profileaction.php:191
|
||||
msgid "User ID"
|
||||
msgstr "Gebruikers-ID"
|
||||
|
||||
#: lib/profileaction.php:191
|
||||
#: lib/profileaction.php:196
|
||||
msgid "Member since"
|
||||
msgstr "Lid sinds"
|
||||
|
||||
#. TRANS: Average count of posts made per day since account registration
|
||||
#: lib/profileaction.php:230
|
||||
#: lib/profileaction.php:235
|
||||
msgid "Daily average"
|
||||
msgstr "Dagelijks gemiddelde"
|
||||
|
||||
#: lib/profileaction.php:259
|
||||
#: lib/profileaction.php:264
|
||||
msgid "All groups"
|
||||
msgstr "Alle groepen"
|
||||
|
||||
|
|
|
@ -7,12 +7,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:28:55+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:55:53+0000\n"
|
||||
"Language-Team: Norwegian Nynorsk\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: nn\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -198,7 +198,7 @@ msgstr "Oppdateringar frå %1$s og vener på %2$s!"
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -486,14 +486,16 @@ msgstr "Du er ikkje medlem av den gruppa."
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "Kunne ikkje fjerne %s fra %s gruppa "
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, fuzzy, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "%s grupper"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "Grupper %s er medlem av"
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
#
|
||||
# Author@translatewiki.net: McDutchie
|
||||
# Author@translatewiki.net: Raven
|
||||
# Author@translatewiki.net: Sp5uhe
|
||||
# --
|
||||
# Paweł Wilk <siefca@gnu.org>, 2008.
|
||||
# Piotr Drąg <piotrdrag@gmail.com>, 2009.
|
||||
|
@ -10,8 +11,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:29:01+0000\n"
|
||||
"POT-Creation-Date: 2010-04-06 22:53+0000\n"
|
||||
"PO-Revision-Date: 2010-04-06 22:55:08+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Polish <pl@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -19,7 +20,7 @@ msgstr ""
|
|||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||
"|| n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64665); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: pl\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -203,7 +204,7 @@ msgstr "Aktualizacje z %1$s i przyjaciół na %2$s."
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -482,15 +483,17 @@ msgstr "Nie jesteś członkiem tej grupy."
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "Nie można usunąć użytkownika %1$s z grupy %2$s."
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "Grupy użytkownika %s"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgstr "Grupy %s są członkiem"
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, php-format
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "%2$s jest członkiem grup %1$s."
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
#, php-format
|
||||
|
@ -833,7 +836,7 @@ msgstr "Nie blokuj tego użytkownika"
|
|||
msgid "Yes"
|
||||
msgstr "Tak"
|
||||
|
||||
#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80
|
||||
#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80
|
||||
msgid "Block this user"
|
||||
msgstr "Zablokuj tego użytkownika"
|
||||
|
||||
|
@ -933,7 +936,7 @@ msgid "Conversation"
|
|||
msgstr "Rozmowa"
|
||||
|
||||
#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87
|
||||
#: lib/profileaction.php:224 lib/searchgroupnav.php:82
|
||||
#: lib/profileaction.php:229 lib/searchgroupnav.php:82
|
||||
msgid "Notices"
|
||||
msgstr "Wpisy"
|
||||
|
||||
|
@ -1624,7 +1627,7 @@ msgstr "Użytkownik został już zablokował w grupie."
|
|||
msgid "User is not a member of group."
|
||||
msgstr "Użytkownik nie jest członkiem grupy."
|
||||
|
||||
#: actions/groupblock.php:136 actions/groupmembers.php:323
|
||||
#: actions/groupblock.php:136 actions/groupmembers.php:341
|
||||
msgid "Block user from group"
|
||||
msgstr "Zablokuj użytkownika w grupie"
|
||||
|
||||
|
@ -1722,19 +1725,19 @@ msgstr "Lista użytkowników znajdujących się w tej grupie."
|
|||
msgid "Admin"
|
||||
msgstr "Administrator"
|
||||
|
||||
#: actions/groupmembers.php:355 lib/blockform.php:69
|
||||
#: actions/groupmembers.php:373 lib/blockform.php:69
|
||||
msgid "Block"
|
||||
msgstr "Zablokuj"
|
||||
|
||||
#: actions/groupmembers.php:450
|
||||
#: actions/groupmembers.php:468
|
||||
msgid "Make user an admin of the group"
|
||||
msgstr "Uczyń użytkownika administratorem grupy"
|
||||
|
||||
#: actions/groupmembers.php:482
|
||||
#: actions/groupmembers.php:500
|
||||
msgid "Make Admin"
|
||||
msgstr "Uczyń administratorem"
|
||||
|
||||
#: actions/groupmembers.php:482
|
||||
#: actions/groupmembers.php:500
|
||||
msgid "Make this user an admin"
|
||||
msgstr "Uczyń tego użytkownika administratorem"
|
||||
|
||||
|
@ -1749,7 +1752,7 @@ msgstr "Oś czasu użytkownika %s"
|
|||
msgid "Updates from members of %1$s on %2$s!"
|
||||
msgstr "Aktualizacje od członków %1$s na %2$s."
|
||||
|
||||
#: actions/groups.php:62 lib/profileaction.php:218 lib/profileaction.php:244
|
||||
#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
|
||||
#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
|
||||
msgid "Groups"
|
||||
msgstr "Grupy"
|
||||
|
@ -2677,12 +2680,12 @@ msgstr ""
|
|||
msgid "People search"
|
||||
msgstr "Wyszukiwanie osób"
|
||||
|
||||
#: actions/peopletag.php:70
|
||||
#: actions/peopletag.php:68
|
||||
#, php-format
|
||||
msgid "Not a valid people tag: %s"
|
||||
msgstr "Nieprawidłowy znacznik osób: %s"
|
||||
|
||||
#: actions/peopletag.php:144
|
||||
#: actions/peopletag.php:142
|
||||
#, php-format
|
||||
msgid "Users self-tagged with %1$s - page %2$d"
|
||||
msgstr "Użytkownicy używający znacznika %1$s - strona %2$d"
|
||||
|
@ -3404,8 +3407,8 @@ msgstr "Organizacja"
|
|||
msgid "Description"
|
||||
msgstr "Opis"
|
||||
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:439
|
||||
#: lib/profileaction.php:182
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:444
|
||||
#: lib/profileaction.php:187
|
||||
msgid "Statistics"
|
||||
msgstr "Statystyki"
|
||||
|
||||
|
@ -3567,25 +3570,25 @@ msgstr "Kanał wpisów dla grupy %s (Atom)"
|
|||
msgid "FOAF for %s group"
|
||||
msgstr "FOAF dla grupy %s"
|
||||
|
||||
#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91
|
||||
#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91
|
||||
msgid "Members"
|
||||
msgstr "Członkowie"
|
||||
|
||||
#: actions/showgroup.php:396 lib/profileaction.php:117
|
||||
#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95
|
||||
#: actions/showgroup.php:398 lib/profileaction.php:117
|
||||
#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
|
||||
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
|
||||
msgid "(None)"
|
||||
msgstr "(Brak)"
|
||||
|
||||
#: actions/showgroup.php:402
|
||||
#: actions/showgroup.php:404
|
||||
msgid "All members"
|
||||
msgstr "Wszyscy członkowie"
|
||||
|
||||
#: actions/showgroup.php:442
|
||||
#: actions/showgroup.php:447
|
||||
msgid "Created"
|
||||
msgstr "Utworzono"
|
||||
|
||||
#: actions/showgroup.php:458
|
||||
#: actions/showgroup.php:463
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3601,7 +3604,7 @@ msgstr ""
|
|||
"action.register%%%%), aby stać się częścią tej grupy i wiele więcej. "
|
||||
"([Przeczytaj więcej](%%%%doc.help%%%%))"
|
||||
|
||||
#: actions/showgroup.php:464
|
||||
#: actions/showgroup.php:469
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3614,7 +3617,7 @@ msgstr ""
|
|||
"narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się "
|
||||
"krótkimi wiadomościami o swoim życiu i zainteresowaniach. "
|
||||
|
||||
#: actions/showgroup.php:492
|
||||
#: actions/showgroup.php:497
|
||||
msgid "Admins"
|
||||
msgstr "Administratorzy"
|
||||
|
||||
|
@ -6219,7 +6222,7 @@ msgstr "Znaczniki we wpisach użytkownika %s"
|
|||
msgid "Unknown"
|
||||
msgstr "Nieznane"
|
||||
|
||||
#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82
|
||||
#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
|
||||
msgid "Subscriptions"
|
||||
msgstr "Subskrypcje"
|
||||
|
||||
|
@ -6227,28 +6230,28 @@ msgstr "Subskrypcje"
|
|||
msgid "All subscriptions"
|
||||
msgstr "Wszystkie subskrypcje"
|
||||
|
||||
#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90
|
||||
#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
|
||||
msgid "Subscribers"
|
||||
msgstr "Subskrybenci"
|
||||
|
||||
#: lib/profileaction.php:159
|
||||
#: lib/profileaction.php:161
|
||||
msgid "All subscribers"
|
||||
msgstr "Wszyscy subskrybenci"
|
||||
|
||||
#: lib/profileaction.php:186
|
||||
#: lib/profileaction.php:191
|
||||
msgid "User ID"
|
||||
msgstr "Identyfikator użytkownika"
|
||||
|
||||
#: lib/profileaction.php:191
|
||||
#: lib/profileaction.php:196
|
||||
msgid "Member since"
|
||||
msgstr "Członek od"
|
||||
|
||||
#. TRANS: Average count of posts made per day since account registration
|
||||
#: lib/profileaction.php:230
|
||||
#: lib/profileaction.php:235
|
||||
msgid "Daily average"
|
||||
msgstr "Dziennie średnio"
|
||||
|
||||
#: lib/profileaction.php:259
|
||||
#: lib/profileaction.php:264
|
||||
msgid "All groups"
|
||||
msgstr "Wszystkie grupy"
|
||||
|
||||
|
|
|
@ -9,12 +9,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:29:05+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:56:03+0000\n"
|
||||
"Language-Team: Portuguese\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: pt\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -202,7 +202,7 @@ msgstr "Actualizações de %1$s e amigos no %2$s!"
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -480,14 +480,16 @@ msgstr "Não é membro deste grupo."
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "Não foi possível remover %1$s do grupo %2$s."
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "Grupos de %s"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "Grupos de que %s é membro"
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
|
|
@ -12,12 +12,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:29:08+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:56:06+0000\n"
|
||||
"Language-Team: Brazilian Portuguese\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: pt-br\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -202,7 +202,7 @@ msgstr "Atualizações de %1$s e amigos no %2$s!"
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -483,14 +483,16 @@ msgstr "Você não é membro deste grupo."
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "Não foi possível remover o usuário %1$s do grupo %2$s."
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "Grupos de %s"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "Grupos dos quais %s é membro"
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
|
|
@ -12,12 +12,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:29:11+0000\n"
|
||||
"POT-Creation-Date: 2010-04-06 22:53+0000\n"
|
||||
"PO-Revision-Date: 2010-04-06 22:55:17+0000\n"
|
||||
"Language-Team: Russian\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64665); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: ru\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -202,7 +202,7 @@ msgstr "Обновлено от %1$s и его друзей на %2$s!"
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -484,15 +484,17 @@ msgstr "Вы не являетесь членом этой группы."
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "Не удаётся удалить пользователя %1$s из группы %2$s."
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "Группы %s"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgstr "Группы, в которых состоит %s"
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, php-format
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "Группы %1$s, в которых состоит %2$s."
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
#, php-format
|
||||
|
@ -837,7 +839,7 @@ msgstr "Не блокировать этого пользователя"
|
|||
msgid "Yes"
|
||||
msgstr "Да"
|
||||
|
||||
#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80
|
||||
#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80
|
||||
msgid "Block this user"
|
||||
msgstr "Заблокировать пользователя."
|
||||
|
||||
|
@ -937,7 +939,7 @@ msgid "Conversation"
|
|||
msgstr "Дискуссия"
|
||||
|
||||
#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87
|
||||
#: lib/profileaction.php:224 lib/searchgroupnav.php:82
|
||||
#: lib/profileaction.php:229 lib/searchgroupnav.php:82
|
||||
msgid "Notices"
|
||||
msgstr "Записи"
|
||||
|
||||
|
@ -1640,7 +1642,7 @@ msgstr "Пользователь уже заблокирован из групп
|
|||
msgid "User is not a member of group."
|
||||
msgstr "Пользователь не является членом этой группы."
|
||||
|
||||
#: actions/groupblock.php:136 actions/groupmembers.php:323
|
||||
#: actions/groupblock.php:136 actions/groupmembers.php:341
|
||||
msgid "Block user from group"
|
||||
msgstr "Заблокировать пользователя из группы."
|
||||
|
||||
|
@ -1742,19 +1744,19 @@ msgstr "Список пользователей, являющихся члена
|
|||
msgid "Admin"
|
||||
msgstr "Настройки"
|
||||
|
||||
#: actions/groupmembers.php:355 lib/blockform.php:69
|
||||
#: actions/groupmembers.php:373 lib/blockform.php:69
|
||||
msgid "Block"
|
||||
msgstr "Блокировать"
|
||||
|
||||
#: actions/groupmembers.php:450
|
||||
#: actions/groupmembers.php:468
|
||||
msgid "Make user an admin of the group"
|
||||
msgstr "Сделать пользователя администратором группы"
|
||||
|
||||
#: actions/groupmembers.php:482
|
||||
#: actions/groupmembers.php:500
|
||||
msgid "Make Admin"
|
||||
msgstr "Сделать администратором"
|
||||
|
||||
#: actions/groupmembers.php:482
|
||||
#: actions/groupmembers.php:500
|
||||
msgid "Make this user an admin"
|
||||
msgstr "Сделать этого пользователя администратором"
|
||||
|
||||
|
@ -1769,7 +1771,7 @@ msgstr "Лента %s"
|
|||
msgid "Updates from members of %1$s on %2$s!"
|
||||
msgstr "Обновления участников %1$s на %2$s!"
|
||||
|
||||
#: actions/groups.php:62 lib/profileaction.php:218 lib/profileaction.php:244
|
||||
#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
|
||||
#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
|
||||
msgid "Groups"
|
||||
msgstr "Группы"
|
||||
|
@ -2696,12 +2698,12 @@ msgstr ""
|
|||
msgid "People search"
|
||||
msgstr "Поиск людей"
|
||||
|
||||
#: actions/peopletag.php:70
|
||||
#: actions/peopletag.php:68
|
||||
#, php-format
|
||||
msgid "Not a valid people tag: %s"
|
||||
msgstr "Неверный тег человека: %s"
|
||||
|
||||
#: actions/peopletag.php:144
|
||||
#: actions/peopletag.php:142
|
||||
#, php-format
|
||||
msgid "Users self-tagged with %1$s - page %2$d"
|
||||
msgstr "Пользователи, установившие себе тег %1$s — страница %2$d"
|
||||
|
@ -3422,8 +3424,8 @@ msgstr "Организация"
|
|||
msgid "Description"
|
||||
msgstr "Описание"
|
||||
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:439
|
||||
#: lib/profileaction.php:182
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:444
|
||||
#: lib/profileaction.php:187
|
||||
msgid "Statistics"
|
||||
msgstr "Статистика"
|
||||
|
||||
|
@ -3585,25 +3587,25 @@ msgstr "Лента записей группы %s (Atom)"
|
|||
msgid "FOAF for %s group"
|
||||
msgstr "FOAF для группы %s"
|
||||
|
||||
#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91
|
||||
#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91
|
||||
msgid "Members"
|
||||
msgstr "Участники"
|
||||
|
||||
#: actions/showgroup.php:396 lib/profileaction.php:117
|
||||
#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95
|
||||
#: actions/showgroup.php:398 lib/profileaction.php:117
|
||||
#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
|
||||
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
|
||||
msgid "(None)"
|
||||
msgstr "(пока ничего нет)"
|
||||
|
||||
#: actions/showgroup.php:402
|
||||
#: actions/showgroup.php:404
|
||||
msgid "All members"
|
||||
msgstr "Все участники"
|
||||
|
||||
#: actions/showgroup.php:442
|
||||
#: actions/showgroup.php:447
|
||||
msgid "Created"
|
||||
msgstr "Создано"
|
||||
|
||||
#: actions/showgroup.php:458
|
||||
#: actions/showgroup.php:463
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3619,7 +3621,7 @@ msgstr ""
|
|||
"action.register%%%%), чтобы стать участником группы и получить множество "
|
||||
"других возможностей! ([Читать далее](%%%%doc.help%%%%))"
|
||||
|
||||
#: actions/showgroup.php:464
|
||||
#: actions/showgroup.php:469
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3632,7 +3634,7 @@ msgstr ""
|
|||
"обеспечении [StatusNet](http://status.net/). Участники обмениваются "
|
||||
"короткими сообщениями о своей жизни и интересах. "
|
||||
|
||||
#: actions/showgroup.php:492
|
||||
#: actions/showgroup.php:497
|
||||
msgid "Admins"
|
||||
msgstr "Администраторы"
|
||||
|
||||
|
@ -6234,7 +6236,7 @@ msgstr "Теги записей пользователя %s"
|
|||
msgid "Unknown"
|
||||
msgstr "Неизвестно"
|
||||
|
||||
#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82
|
||||
#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
|
||||
msgid "Subscriptions"
|
||||
msgstr "Подписки"
|
||||
|
||||
|
@ -6242,28 +6244,28 @@ msgstr "Подписки"
|
|||
msgid "All subscriptions"
|
||||
msgstr "Все подписки."
|
||||
|
||||
#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90
|
||||
#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
|
||||
msgid "Subscribers"
|
||||
msgstr "Подписчики"
|
||||
|
||||
#: lib/profileaction.php:159
|
||||
#: lib/profileaction.php:161
|
||||
msgid "All subscribers"
|
||||
msgstr "Все подписчики"
|
||||
|
||||
#: lib/profileaction.php:186
|
||||
#: lib/profileaction.php:191
|
||||
msgid "User ID"
|
||||
msgstr "ID пользователя"
|
||||
|
||||
#: lib/profileaction.php:191
|
||||
#: lib/profileaction.php:196
|
||||
msgid "Member since"
|
||||
msgstr "Регистрация"
|
||||
|
||||
#. TRANS: Average count of posts made per day since account registration
|
||||
#: lib/profileaction.php:230
|
||||
#: lib/profileaction.php:235
|
||||
msgid "Daily average"
|
||||
msgstr "Среднесуточная"
|
||||
|
||||
#: lib/profileaction.php:259
|
||||
#: lib/profileaction.php:264
|
||||
msgid "All groups"
|
||||
msgstr "Все группы"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"POT-Creation-Date: 2010-04-06 23:05+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"
|
||||
|
@ -187,7 +187,7 @@ msgstr ""
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -460,14 +460,16 @@ msgstr ""
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
@ -804,7 +806,7 @@ msgstr ""
|
|||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80
|
||||
#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80
|
||||
msgid "Block this user"
|
||||
msgstr ""
|
||||
|
||||
|
@ -904,7 +906,7 @@ msgid "Conversation"
|
|||
msgstr ""
|
||||
|
||||
#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87
|
||||
#: lib/profileaction.php:224 lib/searchgroupnav.php:82
|
||||
#: lib/profileaction.php:229 lib/searchgroupnav.php:82
|
||||
msgid "Notices"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1577,7 +1579,7 @@ msgstr ""
|
|||
msgid "User is not a member of group."
|
||||
msgstr ""
|
||||
|
||||
#: actions/groupblock.php:136 actions/groupmembers.php:323
|
||||
#: actions/groupblock.php:136 actions/groupmembers.php:341
|
||||
msgid "Block user from group"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1672,19 +1674,19 @@ msgstr ""
|
|||
msgid "Admin"
|
||||
msgstr ""
|
||||
|
||||
#: actions/groupmembers.php:355 lib/blockform.php:69
|
||||
#: actions/groupmembers.php:373 lib/blockform.php:69
|
||||
msgid "Block"
|
||||
msgstr ""
|
||||
|
||||
#: actions/groupmembers.php:450
|
||||
#: actions/groupmembers.php:468
|
||||
msgid "Make user an admin of the group"
|
||||
msgstr ""
|
||||
|
||||
#: actions/groupmembers.php:482
|
||||
#: actions/groupmembers.php:500
|
||||
msgid "Make Admin"
|
||||
msgstr ""
|
||||
|
||||
#: actions/groupmembers.php:482
|
||||
#: actions/groupmembers.php:500
|
||||
msgid "Make this user an admin"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1699,7 +1701,7 @@ msgstr ""
|
|||
msgid "Updates from members of %1$s on %2$s!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/groups.php:62 lib/profileaction.php:218 lib/profileaction.php:244
|
||||
#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
|
||||
#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
|
||||
msgid "Groups"
|
||||
msgstr ""
|
||||
|
@ -2553,12 +2555,12 @@ msgstr ""
|
|||
msgid "People search"
|
||||
msgstr ""
|
||||
|
||||
#: actions/peopletag.php:70
|
||||
#: actions/peopletag.php:68
|
||||
#, php-format
|
||||
msgid "Not a valid people tag: %s"
|
||||
msgstr ""
|
||||
|
||||
#: actions/peopletag.php:144
|
||||
#: actions/peopletag.php:142
|
||||
#, php-format
|
||||
msgid "Users self-tagged with %1$s - page %2$d"
|
||||
msgstr ""
|
||||
|
@ -3224,8 +3226,8 @@ msgstr ""
|
|||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:439
|
||||
#: lib/profileaction.php:182
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:444
|
||||
#: lib/profileaction.php:187
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3377,25 +3379,25 @@ msgstr ""
|
|||
msgid "FOAF for %s group"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91
|
||||
#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91
|
||||
msgid "Members"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showgroup.php:396 lib/profileaction.php:117
|
||||
#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95
|
||||
#: actions/showgroup.php:398 lib/profileaction.php:117
|
||||
#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
|
||||
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
|
||||
msgid "(None)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showgroup.php:402
|
||||
#: actions/showgroup.php:404
|
||||
msgid "All members"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showgroup.php:442
|
||||
#: actions/showgroup.php:447
|
||||
msgid "Created"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showgroup.php:458
|
||||
#: actions/showgroup.php:463
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3405,7 +3407,7 @@ msgid ""
|
|||
"of this group and many more! ([Read more](%%%%doc.help%%%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showgroup.php:464
|
||||
#: actions/showgroup.php:469
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3414,7 +3416,7 @@ msgid ""
|
|||
"their life and interests. "
|
||||
msgstr ""
|
||||
|
||||
#: actions/showgroup.php:492
|
||||
#: actions/showgroup.php:497
|
||||
msgid "Admins"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5786,7 +5788,7 @@ msgstr ""
|
|||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82
|
||||
#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
|
||||
msgid "Subscriptions"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5794,28 +5796,28 @@ msgstr ""
|
|||
msgid "All subscriptions"
|
||||
msgstr ""
|
||||
|
||||
#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90
|
||||
#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
|
||||
msgid "Subscribers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/profileaction.php:159
|
||||
#: lib/profileaction.php:161
|
||||
msgid "All subscribers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/profileaction.php:186
|
||||
#: lib/profileaction.php:191
|
||||
msgid "User ID"
|
||||
msgstr ""
|
||||
|
||||
#: lib/profileaction.php:191
|
||||
#: lib/profileaction.php:196
|
||||
msgid "Member since"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Average count of posts made per day since account registration
|
||||
#: lib/profileaction.php:230
|
||||
#: lib/profileaction.php:235
|
||||
msgid "Daily average"
|
||||
msgstr ""
|
||||
|
||||
#: lib/profileaction.php:259
|
||||
#: lib/profileaction.php:264
|
||||
msgid "All groups"
|
||||
msgstr ""
|
||||
|
|
@ -9,12 +9,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:29:14+0000\n"
|
||||
"POT-Creation-Date: 2010-04-06 22:53+0000\n"
|
||||
"PO-Revision-Date: 2010-04-06 22:55:20+0000\n"
|
||||
"Language-Team: Swedish\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64665); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: sv\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -198,7 +198,7 @@ msgstr "Uppdateringar från %1$s och vänner på %2$s!"
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -474,15 +474,17 @@ msgstr "Du är inte en medlem i denna grupp."
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "Kunde inte ta bort användare %1$s från grupp %2$s."
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "%ss grupper"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgstr "Grupper %s är en medlem i"
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, php-format
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "%1$s grupper %2$s är en medlem i."
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
#, php-format
|
||||
|
@ -825,7 +827,7 @@ msgstr "Blockera inte denna användare"
|
|||
msgid "Yes"
|
||||
msgstr "Ja"
|
||||
|
||||
#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80
|
||||
#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80
|
||||
msgid "Block this user"
|
||||
msgstr "Blockera denna användare"
|
||||
|
||||
|
@ -926,7 +928,7 @@ msgid "Conversation"
|
|||
msgstr "Konversationer"
|
||||
|
||||
#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87
|
||||
#: lib/profileaction.php:224 lib/searchgroupnav.php:82
|
||||
#: lib/profileaction.php:229 lib/searchgroupnav.php:82
|
||||
msgid "Notices"
|
||||
msgstr "Notiser"
|
||||
|
||||
|
@ -1620,7 +1622,7 @@ msgstr "Användaren är redan blockerad från grupp."
|
|||
msgid "User is not a member of group."
|
||||
msgstr "Användare är inte en gruppmedlem."
|
||||
|
||||
#: actions/groupblock.php:136 actions/groupmembers.php:323
|
||||
#: actions/groupblock.php:136 actions/groupmembers.php:341
|
||||
msgid "Block user from group"
|
||||
msgstr "Blockera användare från grupp"
|
||||
|
||||
|
@ -1721,19 +1723,19 @@ msgstr "En lista av användarna i denna grupp."
|
|||
msgid "Admin"
|
||||
msgstr "Administratör"
|
||||
|
||||
#: actions/groupmembers.php:355 lib/blockform.php:69
|
||||
#: actions/groupmembers.php:373 lib/blockform.php:69
|
||||
msgid "Block"
|
||||
msgstr "Blockera"
|
||||
|
||||
#: actions/groupmembers.php:450
|
||||
#: actions/groupmembers.php:468
|
||||
msgid "Make user an admin of the group"
|
||||
msgstr "Gör användare till en administratör för gruppen"
|
||||
|
||||
#: actions/groupmembers.php:482
|
||||
#: actions/groupmembers.php:500
|
||||
msgid "Make Admin"
|
||||
msgstr "Gör till administratör"
|
||||
|
||||
#: actions/groupmembers.php:482
|
||||
#: actions/groupmembers.php:500
|
||||
msgid "Make this user an admin"
|
||||
msgstr "Gör denna användare till administratör"
|
||||
|
||||
|
@ -1748,7 +1750,7 @@ msgstr "%s tidslinje"
|
|||
msgid "Updates from members of %1$s on %2$s!"
|
||||
msgstr "Uppdateringar från medlemmar i %1$s på %2$s!"
|
||||
|
||||
#: actions/groups.php:62 lib/profileaction.php:218 lib/profileaction.php:244
|
||||
#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
|
||||
#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
|
||||
msgid "Groups"
|
||||
msgstr "Grupper"
|
||||
|
@ -2675,12 +2677,12 @@ msgstr ""
|
|||
msgid "People search"
|
||||
msgstr "Personsökning"
|
||||
|
||||
#: actions/peopletag.php:70
|
||||
#: actions/peopletag.php:68
|
||||
#, php-format
|
||||
msgid "Not a valid people tag: %s"
|
||||
msgstr "Inte en giltig persontagg: %s"
|
||||
|
||||
#: actions/peopletag.php:144
|
||||
#: actions/peopletag.php:142
|
||||
#, php-format
|
||||
msgid "Users self-tagged with %1$s - page %2$d"
|
||||
msgstr "Användare som taggat sig själv med %1$s - sida %2$d"
|
||||
|
@ -3406,8 +3408,8 @@ msgstr "Organisation"
|
|||
msgid "Description"
|
||||
msgstr "Beskrivning"
|
||||
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:439
|
||||
#: lib/profileaction.php:182
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:444
|
||||
#: lib/profileaction.php:187
|
||||
msgid "Statistics"
|
||||
msgstr "Statistik"
|
||||
|
||||
|
@ -3570,25 +3572,25 @@ msgstr "Flöde av notiser för %s grupp (Atom)"
|
|||
msgid "FOAF for %s group"
|
||||
msgstr "FOAF för %s grupp"
|
||||
|
||||
#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91
|
||||
#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91
|
||||
msgid "Members"
|
||||
msgstr "Medlemmar"
|
||||
|
||||
#: actions/showgroup.php:396 lib/profileaction.php:117
|
||||
#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95
|
||||
#: actions/showgroup.php:398 lib/profileaction.php:117
|
||||
#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
|
||||
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
|
||||
msgid "(None)"
|
||||
msgstr "(Ingen)"
|
||||
|
||||
#: actions/showgroup.php:402
|
||||
#: actions/showgroup.php:404
|
||||
msgid "All members"
|
||||
msgstr "Alla medlemmar"
|
||||
|
||||
#: actions/showgroup.php:442
|
||||
#: actions/showgroup.php:447
|
||||
msgid "Created"
|
||||
msgstr "Skapad"
|
||||
|
||||
#: actions/showgroup.php:458
|
||||
#: actions/showgroup.php:463
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3603,7 +3605,7 @@ msgstr ""
|
|||
"sina liv och intressen. [Gå med nu](%%%%action.register%%%%) för att bli en "
|
||||
"del av denna grupp och många fler! ([Läs mer](%%%%doc.help%%%%))"
|
||||
|
||||
#: actions/showgroup.php:464
|
||||
#: actions/showgroup.php:469
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3616,7 +3618,7 @@ msgstr ""
|
|||
"[StatusNet](http://status.net/). Dess medlemmar delar korta meddelande om "
|
||||
"sina liv och intressen. "
|
||||
|
||||
#: actions/showgroup.php:492
|
||||
#: actions/showgroup.php:497
|
||||
msgid "Admins"
|
||||
msgstr "Administratörer"
|
||||
|
||||
|
@ -6204,7 +6206,7 @@ msgstr "Taggar i %ss notiser"
|
|||
msgid "Unknown"
|
||||
msgstr "Okänd"
|
||||
|
||||
#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82
|
||||
#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
|
||||
msgid "Subscriptions"
|
||||
msgstr "Prenumerationer"
|
||||
|
||||
|
@ -6212,28 +6214,28 @@ msgstr "Prenumerationer"
|
|||
msgid "All subscriptions"
|
||||
msgstr "Alla prenumerationer"
|
||||
|
||||
#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90
|
||||
#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
|
||||
msgid "Subscribers"
|
||||
msgstr "Prenumeranter"
|
||||
|
||||
#: lib/profileaction.php:159
|
||||
#: lib/profileaction.php:161
|
||||
msgid "All subscribers"
|
||||
msgstr "Alla prenumeranter"
|
||||
|
||||
#: lib/profileaction.php:186
|
||||
#: lib/profileaction.php:191
|
||||
msgid "User ID"
|
||||
msgstr "Användar-ID"
|
||||
|
||||
#: lib/profileaction.php:191
|
||||
#: lib/profileaction.php:196
|
||||
msgid "Member since"
|
||||
msgstr "Medlem sedan"
|
||||
|
||||
#. TRANS: Average count of posts made per day since account registration
|
||||
#: lib/profileaction.php:230
|
||||
#: lib/profileaction.php:235
|
||||
msgid "Daily average"
|
||||
msgstr "Dagligt genomsnitt"
|
||||
|
||||
#: lib/profileaction.php:259
|
||||
#: lib/profileaction.php:264
|
||||
msgid "All groups"
|
||||
msgstr "Alla grupper"
|
||||
|
||||
|
|
|
@ -9,12 +9,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:29:19+0000\n"
|
||||
"POT-Creation-Date: 2010-04-06 22:53+0000\n"
|
||||
"PO-Revision-Date: 2010-04-06 22:55:23+0000\n"
|
||||
"Language-Team: Telugu\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64665); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: te\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -190,7 +190,7 @@ msgstr ""
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -470,14 +470,16 @@ msgstr "మీరు ఈ గుంపులో సభ్యులు కాద
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "వాడుకరి %sని %s గుంపు నుండి తొలగించలేకపోయాం."
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "%s యొక్క గుంపులు"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "%s సభ్యులుగా ఉన్న గుంపులు"
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
@ -821,7 +823,7 @@ msgstr "ఈ వాడుకరిని నిరోధించకు"
|
|||
msgid "Yes"
|
||||
msgstr "అవును"
|
||||
|
||||
#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80
|
||||
#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80
|
||||
msgid "Block this user"
|
||||
msgstr "ఈ వాడుకరిని నిరోధించు"
|
||||
|
||||
|
@ -923,7 +925,7 @@ msgid "Conversation"
|
|||
msgstr "సంభాషణ"
|
||||
|
||||
#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87
|
||||
#: lib/profileaction.php:224 lib/searchgroupnav.php:82
|
||||
#: lib/profileaction.php:229 lib/searchgroupnav.php:82
|
||||
msgid "Notices"
|
||||
msgstr "సందేశాలు"
|
||||
|
||||
|
@ -1605,7 +1607,7 @@ msgstr "వాడుకరిని ఇప్పటికే గుంపున
|
|||
msgid "User is not a member of group."
|
||||
msgstr "వాడుకరి ఈ గుంపులో సభ్యులు కాదు."
|
||||
|
||||
#: actions/groupblock.php:136 actions/groupmembers.php:323
|
||||
#: actions/groupblock.php:136 actions/groupmembers.php:341
|
||||
msgid "Block user from group"
|
||||
msgstr "వాడుకరిని గుంపు నుండి నిరోధించు"
|
||||
|
||||
|
@ -1705,19 +1707,19 @@ msgstr "ఈ గుంపులో వాడుకరులు జాబితా
|
|||
msgid "Admin"
|
||||
msgstr "నిర్వాహకులు"
|
||||
|
||||
#: actions/groupmembers.php:355 lib/blockform.php:69
|
||||
#: actions/groupmembers.php:373 lib/blockform.php:69
|
||||
msgid "Block"
|
||||
msgstr "నిరోధించు"
|
||||
|
||||
#: actions/groupmembers.php:450
|
||||
#: actions/groupmembers.php:468
|
||||
msgid "Make user an admin of the group"
|
||||
msgstr "వాడుకరిని గుంపుకి ఒక నిర్వాహకునిగా చేయి"
|
||||
|
||||
#: actions/groupmembers.php:482
|
||||
#: actions/groupmembers.php:500
|
||||
msgid "Make Admin"
|
||||
msgstr "నిర్వాహకున్ని చేయి"
|
||||
|
||||
#: actions/groupmembers.php:482
|
||||
#: actions/groupmembers.php:500
|
||||
msgid "Make this user an admin"
|
||||
msgstr "ఈ వాడుకరిని నిర్వాహకున్ని చేయి"
|
||||
|
||||
|
@ -1732,7 +1734,7 @@ msgstr "%s కాలరేఖ"
|
|||
msgid "Updates from members of %1$s on %2$s!"
|
||||
msgstr "%s యొక్క మైక్రోబ్లాగు"
|
||||
|
||||
#: actions/groups.php:62 lib/profileaction.php:218 lib/profileaction.php:244
|
||||
#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
|
||||
#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
|
||||
msgid "Groups"
|
||||
msgstr "గుంపులు"
|
||||
|
@ -2589,7 +2591,7 @@ msgstr ""
|
|||
|
||||
#: actions/pathsadminpanel.php:330
|
||||
msgid "When to use SSL"
|
||||
msgstr ""
|
||||
msgstr "SSLని ఎప్పుడు ఉపయోగించాలి"
|
||||
|
||||
#: actions/pathsadminpanel.php:335
|
||||
#, fuzzy
|
||||
|
@ -2618,12 +2620,12 @@ msgstr ""
|
|||
msgid "People search"
|
||||
msgstr "వ్యక్తుల అన్వేషణ"
|
||||
|
||||
#: actions/peopletag.php:70
|
||||
#: actions/peopletag.php:68
|
||||
#, fuzzy, php-format
|
||||
msgid "Not a valid people tag: %s"
|
||||
msgstr "సరైన ఈమెయిల్ చిరునామా కాదు:"
|
||||
|
||||
#: actions/peopletag.php:144
|
||||
#: actions/peopletag.php:142
|
||||
#, fuzzy, php-format
|
||||
msgid "Users self-tagged with %1$s - page %2$d"
|
||||
msgstr "%s యొక్క మైక్రోబ్లాగు"
|
||||
|
@ -3325,8 +3327,8 @@ msgstr "సంస్ధ"
|
|||
msgid "Description"
|
||||
msgstr "వివరణ"
|
||||
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:439
|
||||
#: lib/profileaction.php:182
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:444
|
||||
#: lib/profileaction.php:187
|
||||
msgid "Statistics"
|
||||
msgstr "గణాంకాలు"
|
||||
|
||||
|
@ -3480,25 +3482,25 @@ msgstr "%s యొక్క సందేశముల ఫీడు"
|
|||
msgid "FOAF for %s group"
|
||||
msgstr "%s గుంపు"
|
||||
|
||||
#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91
|
||||
#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91
|
||||
msgid "Members"
|
||||
msgstr "సభ్యులు"
|
||||
|
||||
#: actions/showgroup.php:396 lib/profileaction.php:117
|
||||
#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95
|
||||
#: actions/showgroup.php:398 lib/profileaction.php:117
|
||||
#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
|
||||
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
|
||||
msgid "(None)"
|
||||
msgstr "(ఏమీలేదు)"
|
||||
|
||||
#: actions/showgroup.php:402
|
||||
#: actions/showgroup.php:404
|
||||
msgid "All members"
|
||||
msgstr "అందరు సభ్యులూ"
|
||||
|
||||
#: actions/showgroup.php:442
|
||||
#: actions/showgroup.php:447
|
||||
msgid "Created"
|
||||
msgstr "సృష్టితం"
|
||||
|
||||
#: actions/showgroup.php:458
|
||||
#: actions/showgroup.php:463
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3508,7 +3510,7 @@ msgid ""
|
|||
"of this group and many more! ([Read more](%%%%doc.help%%%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showgroup.php:464
|
||||
#: actions/showgroup.php:469
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3517,7 +3519,7 @@ msgid ""
|
|||
"their life and interests. "
|
||||
msgstr ""
|
||||
|
||||
#: actions/showgroup.php:492
|
||||
#: actions/showgroup.php:497
|
||||
msgid "Admins"
|
||||
msgstr "నిర్వాహకులు"
|
||||
|
||||
|
@ -3669,7 +3671,7 @@ msgstr "మీ సైటు యొక్క పేరు, ఇలా \"మీక
|
|||
|
||||
#: actions/siteadminpanel.php:229
|
||||
msgid "Brought by"
|
||||
msgstr ""
|
||||
msgstr "అందిస్తున్నవారు"
|
||||
|
||||
#: actions/siteadminpanel.php:230
|
||||
msgid "Text used for credits link in footer of each page"
|
||||
|
@ -3677,16 +3679,15 @@ msgstr ""
|
|||
|
||||
#: actions/siteadminpanel.php:234
|
||||
msgid "Brought by URL"
|
||||
msgstr ""
|
||||
msgstr "అందిస్తున్నవారి URL"
|
||||
|
||||
#: actions/siteadminpanel.php:235
|
||||
msgid "URL used for credits link in footer of each page"
|
||||
msgstr ""
|
||||
|
||||
#: actions/siteadminpanel.php:239
|
||||
#, fuzzy
|
||||
msgid "Contact email address for your site"
|
||||
msgstr "ఈ వాడుకరికై నమోదైన ఈమెయిల్ చిరునామాలు ఏమీ లేవు."
|
||||
msgstr "మీ సైటుకి సంప్రదింపుల ఈమెయిల్ చిరునామా"
|
||||
|
||||
#: actions/siteadminpanel.php:245
|
||||
msgid "Local"
|
||||
|
@ -5996,7 +5997,7 @@ msgstr ""
|
|||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82
|
||||
#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
|
||||
msgid "Subscriptions"
|
||||
msgstr "చందాలు"
|
||||
|
||||
|
@ -6004,28 +6005,28 @@ msgstr "చందాలు"
|
|||
msgid "All subscriptions"
|
||||
msgstr "అన్ని చందాలు"
|
||||
|
||||
#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90
|
||||
#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
|
||||
msgid "Subscribers"
|
||||
msgstr "చందాదార్లు"
|
||||
|
||||
#: lib/profileaction.php:159
|
||||
#: lib/profileaction.php:161
|
||||
msgid "All subscribers"
|
||||
msgstr "అందరు చందాదార్లు"
|
||||
|
||||
#: lib/profileaction.php:186
|
||||
#: lib/profileaction.php:191
|
||||
msgid "User ID"
|
||||
msgstr "వాడుకరి ID"
|
||||
|
||||
#: lib/profileaction.php:191
|
||||
#: lib/profileaction.php:196
|
||||
msgid "Member since"
|
||||
msgstr "సభ్యులైన తేదీ"
|
||||
|
||||
#. TRANS: Average count of posts made per day since account registration
|
||||
#: lib/profileaction.php:230
|
||||
#: lib/profileaction.php:235
|
||||
msgid "Daily average"
|
||||
msgstr ""
|
||||
|
||||
#: lib/profileaction.php:259
|
||||
#: lib/profileaction.php:264
|
||||
msgid "All groups"
|
||||
msgstr "అన్ని గుంపులు"
|
||||
|
||||
|
|
|
@ -9,12 +9,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:29:22+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:56:20+0000\n"
|
||||
"Language-Team: Turkish\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: tr\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -199,7 +199,7 @@ msgstr ""
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -488,14 +488,16 @@ msgstr "Bize o profili yollamadınız"
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "OpenID formu yaratılamadı: %s"
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, fuzzy, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "Profil"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "Bize o profili yollamadınız"
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
|
|
@ -10,12 +10,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:29:26+0000\n"
|
||||
"POT-Creation-Date: 2010-04-06 22:53+0000\n"
|
||||
"PO-Revision-Date: 2010-04-06 22:55:29+0000\n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64665); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: uk\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -200,7 +200,7 @@ msgstr "Оновлення від %1$s та друзів на %2$s!"
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -479,15 +479,17 @@ msgstr "Ви не є учасником цієї групи."
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "Не вдалось видалити користувача %1$s з групи %2$s."
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "%s групи"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgstr "%s бере участь в цих групах"
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, php-format
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "%1$s групи, в яких %2$s бере участь."
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
#, php-format
|
||||
|
@ -835,7 +837,7 @@ msgstr "Не блокувати цього користувача"
|
|||
msgid "Yes"
|
||||
msgstr "Так"
|
||||
|
||||
#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80
|
||||
#: actions/block.php:144 actions/groupmembers.php:373 lib/blockform.php:80
|
||||
msgid "Block this user"
|
||||
msgstr "Блокувати користувача"
|
||||
|
||||
|
@ -935,7 +937,7 @@ msgid "Conversation"
|
|||
msgstr "Розмова"
|
||||
|
||||
#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87
|
||||
#: lib/profileaction.php:224 lib/searchgroupnav.php:82
|
||||
#: lib/profileaction.php:229 lib/searchgroupnav.php:82
|
||||
msgid "Notices"
|
||||
msgstr "Дописи"
|
||||
|
||||
|
@ -1624,7 +1626,7 @@ msgstr "Користувача заблоковано в цій групі."
|
|||
msgid "User is not a member of group."
|
||||
msgstr "Користувач не є учасником групи."
|
||||
|
||||
#: actions/groupblock.php:136 actions/groupmembers.php:323
|
||||
#: actions/groupblock.php:136 actions/groupmembers.php:341
|
||||
msgid "Block user from group"
|
||||
msgstr "Блокувати користувача в групі"
|
||||
|
||||
|
@ -1726,19 +1728,19 @@ msgstr "Список учасників цієї групи."
|
|||
msgid "Admin"
|
||||
msgstr "Адмін"
|
||||
|
||||
#: actions/groupmembers.php:355 lib/blockform.php:69
|
||||
#: actions/groupmembers.php:373 lib/blockform.php:69
|
||||
msgid "Block"
|
||||
msgstr "Блок"
|
||||
|
||||
#: actions/groupmembers.php:450
|
||||
#: actions/groupmembers.php:468
|
||||
msgid "Make user an admin of the group"
|
||||
msgstr "Надати користувачеві права адміністратора"
|
||||
|
||||
#: actions/groupmembers.php:482
|
||||
#: actions/groupmembers.php:500
|
||||
msgid "Make Admin"
|
||||
msgstr "Зробити адміном"
|
||||
|
||||
#: actions/groupmembers.php:482
|
||||
#: actions/groupmembers.php:500
|
||||
msgid "Make this user an admin"
|
||||
msgstr "Надати цьому користувачеві права адміністратора"
|
||||
|
||||
|
@ -1753,7 +1755,7 @@ msgstr "%s стрічка"
|
|||
msgid "Updates from members of %1$s on %2$s!"
|
||||
msgstr "Оновлення членів %1$s на %2$s!"
|
||||
|
||||
#: actions/groups.php:62 lib/profileaction.php:218 lib/profileaction.php:244
|
||||
#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
|
||||
#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
|
||||
msgid "Groups"
|
||||
msgstr "Групи"
|
||||
|
@ -2686,12 +2688,12 @@ msgstr ""
|
|||
msgid "People search"
|
||||
msgstr "Пошук людей"
|
||||
|
||||
#: actions/peopletag.php:70
|
||||
#: actions/peopletag.php:68
|
||||
#, php-format
|
||||
msgid "Not a valid people tag: %s"
|
||||
msgstr "Це недійсний особистий теґ: %s"
|
||||
|
||||
#: actions/peopletag.php:144
|
||||
#: actions/peopletag.php:142
|
||||
#, php-format
|
||||
msgid "Users self-tagged with %1$s - page %2$d"
|
||||
msgstr "Користувачі з особистим теґом %1$s — сторінка %2$d"
|
||||
|
@ -3413,8 +3415,8 @@ msgstr "Організація"
|
|||
msgid "Description"
|
||||
msgstr "Опис"
|
||||
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:439
|
||||
#: lib/profileaction.php:182
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:444
|
||||
#: lib/profileaction.php:187
|
||||
msgid "Statistics"
|
||||
msgstr "Статистика"
|
||||
|
||||
|
@ -3576,25 +3578,25 @@ msgstr "Стрічка дописів групи %s (Atom)"
|
|||
msgid "FOAF for %s group"
|
||||
msgstr "FOAF для групи %s"
|
||||
|
||||
#: actions/showgroup.php:391 actions/showgroup.php:448 lib/groupnav.php:91
|
||||
#: actions/showgroup.php:393 actions/showgroup.php:453 lib/groupnav.php:91
|
||||
msgid "Members"
|
||||
msgstr "Учасники"
|
||||
|
||||
#: actions/showgroup.php:396 lib/profileaction.php:117
|
||||
#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95
|
||||
#: actions/showgroup.php:398 lib/profileaction.php:117
|
||||
#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
|
||||
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
|
||||
msgid "(None)"
|
||||
msgstr "(Пусто)"
|
||||
|
||||
#: actions/showgroup.php:402
|
||||
#: actions/showgroup.php:404
|
||||
msgid "All members"
|
||||
msgstr "Всі учасники"
|
||||
|
||||
#: actions/showgroup.php:442
|
||||
#: actions/showgroup.php:447
|
||||
msgid "Created"
|
||||
msgstr "Створено"
|
||||
|
||||
#: actions/showgroup.php:458
|
||||
#: actions/showgroup.php:463
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3609,7 +3611,7 @@ msgstr ""
|
|||
"короткі дописи про своє життя та інтереси. [Приєднуйтесь](%%action.register%"
|
||||
"%) зараз і долучіться до спілкування! ([Дізнатися більше](%%doc.help%%))"
|
||||
|
||||
#: actions/showgroup.php:464
|
||||
#: actions/showgroup.php:469
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3622,7 +3624,7 @@ msgstr ""
|
|||
"забезпеченні [StatusNet](http://status.net/). Члени цієї групи роблять "
|
||||
"короткі дописи про своє життя та інтереси. "
|
||||
|
||||
#: actions/showgroup.php:492
|
||||
#: actions/showgroup.php:497
|
||||
msgid "Admins"
|
||||
msgstr "Адміни"
|
||||
|
||||
|
@ -6213,7 +6215,7 @@ msgstr "Теґи у дописах %s"
|
|||
msgid "Unknown"
|
||||
msgstr "Невідомо"
|
||||
|
||||
#: lib/profileaction.php:109 lib/profileaction.php:200 lib/subgroupnav.php:82
|
||||
#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
|
||||
msgid "Subscriptions"
|
||||
msgstr "Підписки"
|
||||
|
||||
|
@ -6221,28 +6223,28 @@ msgstr "Підписки"
|
|||
msgid "All subscriptions"
|
||||
msgstr "Всі підписки"
|
||||
|
||||
#: lib/profileaction.php:142 lib/profileaction.php:209 lib/subgroupnav.php:90
|
||||
#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
|
||||
msgid "Subscribers"
|
||||
msgstr "Підписчики"
|
||||
|
||||
#: lib/profileaction.php:159
|
||||
#: lib/profileaction.php:161
|
||||
msgid "All subscribers"
|
||||
msgstr "Всі підписчики"
|
||||
|
||||
#: lib/profileaction.php:186
|
||||
#: lib/profileaction.php:191
|
||||
msgid "User ID"
|
||||
msgstr "ІД"
|
||||
|
||||
#: lib/profileaction.php:191
|
||||
#: lib/profileaction.php:196
|
||||
msgid "Member since"
|
||||
msgstr "З нами від"
|
||||
|
||||
#. TRANS: Average count of posts made per day since account registration
|
||||
#: lib/profileaction.php:230
|
||||
#: lib/profileaction.php:235
|
||||
msgid "Daily average"
|
||||
msgstr "Середньодобове"
|
||||
|
||||
#: lib/profileaction.php:259
|
||||
#: lib/profileaction.php:264
|
||||
msgid "All groups"
|
||||
msgstr "Всі групи"
|
||||
|
||||
|
|
|
@ -7,12 +7,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:29:29+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:56:28+0000\n"
|
||||
"Language-Team: Vietnamese\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: vi\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -198,7 +198,7 @@ msgstr ""
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -490,14 +490,16 @@ msgstr "Bạn chưa cập nhật thông tin riêng"
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi."
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, fuzzy, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "%s và nhóm"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "Bạn chưa cập nhật thông tin riêng"
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
|
|
@ -10,12 +10,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:29:32+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:56:31+0000\n"
|
||||
"Language-Team: Simplified Chinese\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: zh-hans\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -200,7 +200,7 @@ msgstr "来自%2$s 上 %1$s 和好友的更新!"
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -488,14 +488,16 @@ msgstr "您未告知此个人信息"
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "无法订阅用户:未找到。"
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, fuzzy, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "%s 群组"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "%s 组是成员组成了"
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
|
|
@ -7,12 +7,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-04-03 13:27+0000\n"
|
||||
"PO-Revision-Date: 2010-04-03 13:29:38+0000\n"
|
||||
"POT-Creation-Date: 2010-04-05 18:54+0000\n"
|
||||
"PO-Revision-Date: 2010-04-05 18:56:34+0000\n"
|
||||
"Language-Team: Traditional Chinese\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64515); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.17alpha (r64621); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: zh-hant\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -195,7 +195,7 @@ msgstr ""
|
|||
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
|
||||
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
|
||||
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:133
|
||||
#: actions/apigroupleave.php:141 actions/apigrouplist.php:136
|
||||
#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
|
||||
#: actions/apigroupshow.php:115 actions/apihelptest.php:88
|
||||
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
|
||||
|
@ -479,14 +479,16 @@ msgstr "無法連結到伺服器:%s"
|
|||
msgid "Could not remove user %1$s from group %2$s."
|
||||
msgstr "無法從 %s 建立OpenID"
|
||||
|
||||
#: actions/apigrouplist.php:96
|
||||
#. TRANS: %s is a user name
|
||||
#: actions/apigrouplist.php:97
|
||||
#, fuzzy, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr "無此通知"
|
||||
|
||||
#: actions/apigrouplist.php:104
|
||||
#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
|
||||
#: actions/apigrouplist.php:107
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %1$s is a member of on %2$s."
|
||||
msgid "%1$s groups %2$s is a member of."
|
||||
msgstr "無法連結到伺服器:%s"
|
||||
|
||||
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||
|
|
|
@ -55,9 +55,13 @@ class GeonamesPlugin extends Plugin
|
|||
public $username = null;
|
||||
public $token = null;
|
||||
public $expiry = 7776000; // 90-day expiry
|
||||
public $timeout = 2; // Web service timeout in seconds.
|
||||
public $timeoutWindow = 60; // Further lookups in this process will be disabled for N seconds after a timeout.
|
||||
public $cachePrefix = null; // Optional shared memcache prefix override
|
||||
// to share lookups between local instances.
|
||||
|
||||
protected $lastTimeout = null; // timestamp of last web service timeout
|
||||
|
||||
/**
|
||||
* convert a name into a Location object
|
||||
*
|
||||
|
@ -437,9 +441,21 @@ class GeonamesPlugin extends Plugin
|
|||
|
||||
function getGeonames($method, $params)
|
||||
{
|
||||
$client = HTTPClient::start();
|
||||
if ($this->lastTimeout && (time() - $this->lastTimeout < $this->timeoutWindow)) {
|
||||
throw new Exception("skipping due to recent web service timeout");
|
||||
}
|
||||
|
||||
$client = HTTPClient::start();
|
||||
$client->setConfig('connect_timeout', $this->timeout);
|
||||
$client->setConfig('timeout', $this->timeout);
|
||||
|
||||
try {
|
||||
$result = $client->get($this->wsUrl($method, $params));
|
||||
} catch (Exception $e) {
|
||||
common_log(LOG_ERR, __METHOD__ . ": " . $e->getMessage());
|
||||
$this->lastTimeout = time();
|
||||
throw $e;
|
||||
}
|
||||
|
||||
if (!$result->isOk()) {
|
||||
throw new Exception("HTTP error code " . $result->code);
|
||||
|
|
|
@ -65,6 +65,26 @@ class MeteorPlugin extends RealtimePlugin
|
|||
parent::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* Pull settings from config file/database if set.
|
||||
*/
|
||||
function initialize()
|
||||
{
|
||||
$settings = array('webserver',
|
||||
'webport',
|
||||
'controlport',
|
||||
'controlserver',
|
||||
'channelbase');
|
||||
foreach ($settings as $name) {
|
||||
$val = common_config('meteor', $name);
|
||||
if ($val !== false) {
|
||||
$this->$name = $val;
|
||||
}
|
||||
}
|
||||
|
||||
return parent::initialize();
|
||||
}
|
||||
|
||||
function _getScripts()
|
||||
{
|
||||
$scripts = parent::_getScripts();
|
||||
|
|
|
@ -73,9 +73,11 @@ class MobileProfilePlugin extends WAP20Plugin
|
|||
$this->serveMobile = true;
|
||||
} else {
|
||||
// If they like the WAP 2.0 mimetype, serve them MP
|
||||
if (strstr('application/vnd.wap.xhtml+xml', $type) !== false) {
|
||||
$this->serveMobile = true;
|
||||
} else {
|
||||
// @fixme $type is undefined, making this if case useless and spewing errors.
|
||||
// What's the intent?
|
||||
//if (strstr('application/vnd.wap.xhtml+xml', $type) !== false) {
|
||||
// $this->serveMobile = true;
|
||||
//} else {
|
||||
// If they are a mobile device that supports WAP 2.0,
|
||||
// serve them MP
|
||||
|
||||
|
@ -139,8 +141,19 @@ class MobileProfilePlugin extends WAP20Plugin
|
|||
'windows ce'
|
||||
);
|
||||
|
||||
$blacklist = array(
|
||||
'ipad', // Larger screen handles the full theme fairly well.
|
||||
);
|
||||
|
||||
$httpuseragent = strtolower($_SERVER['HTTP_USER_AGENT']);
|
||||
|
||||
foreach ($blacklist as $md) {
|
||||
if (strstr($httpuseragent, $md) !== false) {
|
||||
$this->serveMobile = false;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
foreach ($this->mobiledevices as $md) {
|
||||
if (strstr($httpuseragent, $md) !== false) {
|
||||
$this->setMobileFeatures($httpuseragent);
|
||||
|
@ -149,7 +162,7 @@ class MobileProfilePlugin extends WAP20Plugin
|
|||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
//}
|
||||
|
||||
// If they are okay with MP, and the site has a mobile server,
|
||||
// redirect there
|
||||
|
@ -167,7 +180,9 @@ class MobileProfilePlugin extends WAP20Plugin
|
|||
return true;
|
||||
}
|
||||
|
||||
if (!$type) {
|
||||
// @fixme $type is undefined, making this if case useless and spewing errors.
|
||||
// What's the intent?
|
||||
//if (!$type) {
|
||||
$httpaccept = isset($_SERVER['HTTP_ACCEPT']) ?
|
||||
$_SERVER['HTTP_ACCEPT'] : null;
|
||||
|
||||
|
@ -180,7 +195,7 @@ class MobileProfilePlugin extends WAP20Plugin
|
|||
throw new ClientException(_('This page is not available in a '.
|
||||
'media type you accept'), 406);
|
||||
}
|
||||
}
|
||||
//}
|
||||
|
||||
header('Content-Type: '.$type);
|
||||
|
||||
|
@ -221,9 +236,12 @@ class MobileProfilePlugin extends WAP20Plugin
|
|||
|
||||
function onStartShowHeadElements($action)
|
||||
{
|
||||
if (!$action->serveMobile) {
|
||||
return true;
|
||||
}
|
||||
// @fixme nothing appears to set a serveMobile on any action,
|
||||
// so this is useless and spews errors. Is this supposed to be
|
||||
// checking $this?
|
||||
//if (!$action->serveMobile) {
|
||||
// return true;
|
||||
//}
|
||||
|
||||
$action->showTitle();
|
||||
$action->showShortcutIcon();
|
||||
|
|
|
@ -726,7 +726,8 @@ class Ostatus_profile extends Memcached_DataObject
|
|||
*
|
||||
* @param string $profile_url
|
||||
* @return Ostatus_profile
|
||||
* @throws Exception
|
||||
* @throws Exception on various error conditions
|
||||
* @throws OStatusShadowException if this reference would obscure a local user/group
|
||||
*/
|
||||
|
||||
public static function ensureProfileURL($profile_url, $hints=array())
|
||||
|
@ -813,7 +814,7 @@ class Ostatus_profile extends Memcached_DataObject
|
|||
* remote profiles.
|
||||
*
|
||||
* @return mixed Ostatus_profile or null
|
||||
* @throws Exception for local profiles
|
||||
* @throws OStatusShadowException for local profiles
|
||||
*/
|
||||
static function getFromProfileURL($profile_url)
|
||||
{
|
||||
|
@ -836,7 +837,7 @@ class Ostatus_profile extends Memcached_DataObject
|
|||
$user = User::staticGet('id', $profile->id);
|
||||
|
||||
if (!empty($user)) {
|
||||
throw new Exception("'$profile_url' is the profile for local user '{$user->nickname}'.");
|
||||
throw new OStatusShadowException($profile, "'$profile_url' is the profile for local user '{$user->nickname}'.");
|
||||
}
|
||||
|
||||
// Continue discovery; it's a remote profile
|
||||
|
@ -1538,6 +1539,7 @@ class Ostatus_profile extends Memcached_DataObject
|
|||
* @param string $addr webfinger address
|
||||
* @return Ostatus_profile
|
||||
* @throws Exception on error conditions
|
||||
* @throws OStatusShadowException if this reference would obscure a local user/group
|
||||
*/
|
||||
public static function ensureWebfinger($addr)
|
||||
{
|
||||
|
@ -1616,9 +1618,18 @@ class Ostatus_profile extends Memcached_DataObject
|
|||
$oprofile = self::ensureProfileURL($hints['profileurl'], $hints);
|
||||
self::cacheSet(sprintf('ostatus_profile:webfinger:%s', $addr), $oprofile->uri);
|
||||
return $oprofile;
|
||||
} catch (OStatusShadowException $e) {
|
||||
// We've ended up with a remote reference to a local user or group.
|
||||
// @fixme ideally we should be able to say who it was so we can
|
||||
// go back and refer to it the regular way
|
||||
throw $e;
|
||||
} catch (Exception $e) {
|
||||
common_log(LOG_WARNING, "Failed creating profile from profile URL '$profileUrl': " . $e->getMessage());
|
||||
// keep looking
|
||||
//
|
||||
// @fixme this means an error discovering from profile page
|
||||
// may give us a corrupt entry using the webfinger URI, which
|
||||
// will obscure the correct page-keyed profile later on.
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1720,3 +1731,24 @@ class Ostatus_profile extends Memcached_DataObject
|
|||
return $file;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Exception indicating we've got a remote reference to a local user,
|
||||
* not a remote user!
|
||||
*
|
||||
* If we can ue a local profile after all, it's available as $e->profile.
|
||||
*/
|
||||
class OStatusShadowException extends Exception
|
||||
{
|
||||
public $profile;
|
||||
|
||||
/**
|
||||
* @param Profile $profile
|
||||
* @param string $message
|
||||
*/
|
||||
function __construct($profile, $message) {
|
||||
$this->profile = $profile;
|
||||
parent::__construct($message);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -50,20 +50,47 @@ $encGroup = str_replace($marker, '%', $encGroup);
|
|||
$sql = "SELECT * FROM ostatus_profile WHERE uri LIKE '%s' OR uri LIKE '%s'";
|
||||
$oprofile->query(sprintf($sql, $encProfile, $encGroup));
|
||||
|
||||
echo "Found $oprofile->N bogus ostatus_profile entries for local users and groups:\n";
|
||||
$count = $oprofile->N;
|
||||
echo "Found $count bogus ostatus_profile entries shadowing local users and groups:\n";
|
||||
|
||||
while ($oprofile->fetch()) {
|
||||
echo "$oprofile->uri";
|
||||
$uri = $oprofile->uri;
|
||||
if (preg_match('!/group/(\d+)/id!', $oprofile->uri, $matches)) {
|
||||
$id = intval($matches[1]);
|
||||
$group = Local_group::staticGet('group_id', $id);
|
||||
if ($group) {
|
||||
$nick = $group->nickname;
|
||||
} else {
|
||||
$nick = '<deleted>';
|
||||
}
|
||||
echo "group $id ($nick) hidden by $uri";
|
||||
} else if (preg_match('!/user/(\d+)!', $uri, $matches)) {
|
||||
$id = intval($matches[1]);
|
||||
$user = User::staticGet('id', $id);
|
||||
if ($user) {
|
||||
$nick = $user->nickname;
|
||||
} else {
|
||||
$nick = '<deleted>';
|
||||
}
|
||||
echo "user $id ($nick) hidden by $uri";
|
||||
} else {
|
||||
echo "$uri matched query, but we don't recognize it.\n";
|
||||
continue;
|
||||
}
|
||||
|
||||
if ($dry) {
|
||||
echo " (unchanged)\n";
|
||||
echo " - skipping\n";
|
||||
} else {
|
||||
echo " removing bogus ostatus_profile entry...";
|
||||
echo " - removing bogus ostatus_profile entry...";
|
||||
$evil = clone($oprofile);
|
||||
$evil->delete();
|
||||
echo " ok\n";
|
||||
}
|
||||
}
|
||||
|
||||
echo "done.\n";
|
||||
if ($count && $dry) {
|
||||
echo "NO CHANGES MADE -- To delete the bogus entries, run again without --dry-run option.\n";
|
||||
} else {
|
||||
echo "done.\n";
|
||||
}
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ function update_core($dir, $domain)
|
|||
xgettext \
|
||||
--from-code=UTF-8 \
|
||||
--default-domain=$domain \
|
||||
--output=locale/$domain.po \
|
||||
--output=locale/$domain.pot \
|
||||
--language=PHP \
|
||||
--add-comments=TRANS \
|
||||
--keyword="_m:1,1t" \
|
||||
|
@ -64,7 +64,7 @@ function do_update_plugin($dir, $domain)
|
|||
xgettext \
|
||||
--from-code=UTF-8 \
|
||||
--default-domain=$domain \
|
||||
--output=locale/$domain.po \
|
||||
--output=locale/$domain.pot \
|
||||
--language=PHP \
|
||||
--add-comments=TRANS \
|
||||
--keyword='' \
|
||||
|
|
|
@ -31,7 +31,7 @@ define('LACONICA', true); // compatibility
|
|||
require_once(INSTALLDIR . '/lib/common.php');
|
||||
|
||||
// Master StatusNet .pot file location (created by update_pot.sh)
|
||||
$statusnet_pot = INSTALLDIR . '/locale/statusnet.po';
|
||||
$statusnet_pot = INSTALLDIR . '/locale/statusnet.pot';
|
||||
|
||||
set_time_limit(60);
|
||||
|
||||
|
@ -98,7 +98,7 @@ foreach ($languages as $language) {
|
|||
$new_file = curl_get_file($file_url);
|
||||
|
||||
if ($new_file === FALSE) {
|
||||
echo "Couldn't retrieve .po file for $code: $file_url\n";
|
||||
echo "Could not retrieve .po file for $code: $file_url\n";
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user