Merge branch '0.9.x' into 1.0.x

This commit is contained in:
Evan Prodromou 2010-04-07 10:47:29 -04:00
commit 727ea5a516
69 changed files with 13648 additions and 1058 deletions

View File

@ -93,6 +93,7 @@ class ApiGroupListAction extends ApiBareAuthAction
parent::handle($args); parent::handle($args);
$sitename = common_config('site', 'name'); $sitename = common_config('site', 'name');
// TRANS: %s is a user name
$title = sprintf(_("%s's groups"), $this->user->nickname); $title = sprintf(_("%s's groups"), $this->user->nickname);
$taguribase = TagURI::base(); $taguribase = TagURI::base();
$id = "tag:$taguribase:Groups"; $id = "tag:$taguribase:Groups";
@ -100,10 +101,12 @@ class ApiGroupListAction extends ApiBareAuthAction
'usergroups', 'usergroups',
array('nickname' => $this->user->nickname) array('nickname' => $this->user->nickname)
); );
$subtitle = sprintf( $subtitle = sprintf(
_("Groups %1\$s is a member of on %2\$s."), // TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s
$this->user->nickname, _("%1\$s groups %2\$s is a member of."),
$sitename $sitename,
$this->user->nickname
); );
switch($this->format) { switch($this->format) {

View File

@ -168,4 +168,11 @@ class BlockAction extends ProfileFormAction
return; return;
} }
} }
function showScripts()
{
parent::showScripts();
$this->autofocus('form_action-yes');
}
} }

View File

@ -214,5 +214,12 @@ class GroupblockAction extends Action
303); 303);
} }
} }
function showScripts()
{
parent::showScripts();
$this->autofocus('form_action-yes');
}
} }

View File

@ -212,6 +212,7 @@ class GroupMemberListItem extends ProfileListItem
} }
} }
function showGroupBlockForm() function showGroupBlockForm()
{ {
$user = common_current_user(); $user = common_current_user();
@ -224,7 +225,24 @@ class GroupMemberListItem extends ProfileListItem
$bf->show(); $bf->show();
$this->out->elementEnd('li'); $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';
}
} }
} }

View File

@ -32,8 +32,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
exit(1); exit(1);
} }
require_once INSTALLDIR.'/lib/profilelist.php';
/** /**
* This class outputs a paginated list of profiles self-tagged with a given tag * 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)); $profile->query(sprintf($qry, $this->tag, $lim));
$pl = new ProfileList($profile, $this); $ptl = new PeopleTagList($profile, $this); // pass the ammunition
$cnt = $pl->show(); $cnt = $ptl->show();
$this->pagination($this->page > 1, $this->pagination($this->page > 1,
$cnt > PROFILES_PER_PAGE, $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';
}
}
}

View File

@ -388,18 +388,23 @@ class ShowgroupAction extends GroupDesignAction
$this->elementStart('div', array('id' => 'entity_members', $this->elementStart('div', array('id' => 'entity_members',
'class' => 'section')); 'class' => 'section'));
$this->element('h2', null, _('Members')); if (Event::handle('StartShowGroupMembersMiniList', array($this))) {
$pml = new ProfileMiniList($member, $this); $this->element('h2', null, _('Members'));
$cnt = $pml->show();
if ($cnt == 0) {
$this->element('p', null, _('(None)'));
}
if ($cnt > MEMBERS_PER_SECTION) { $gmml = new GroupMembersMiniList($member, $this);
$this->element('a', array('href' => common_local_url('groupmembers', $cnt = $gmml->show();
array('nickname' => $this->group->nickname))), if ($cnt == 0) {
_('All members')); $this->element('p', null, _('(None)'));
}
if ($cnt > MEMBERS_PER_SECTION) {
$this->element('a', array('href' => common_local_url('groupmembers',
array('nickname' => $this->group->nickname))),
_('All members'));
}
Event::handle('EndShowGroupMembersMiniList', array($this));
} }
$this->elementEnd('div'); $this->elementEnd('div');
@ -502,3 +507,26 @@ class GroupAdminSection extends ProfileSection
return null; 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;
}
}

View File

@ -163,4 +163,22 @@ class SubscribersListItem extends SubscriptionListItem
$bf->show(); $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';
}
}
} }

View File

@ -573,6 +573,9 @@ class Memcached_DataObject extends Safe_DataObject
if (!empty($this->id)) { if (!empty($this->id)) {
$id .= ':' . $this->id; $id .= ':' . $this->id;
} }
if ($message instanceof PEAR_Error) {
$message = $message->getMessage();
}
throw new ServerException("[$id] DB_DataObject error [$type]: $message"); throw new ServerException("[$id] DB_DataObject error [$type]: $message");
} }

View File

@ -300,4 +300,8 @@ $default =
), ),
'api' => 'api' =>
array('realm' => null), array('realm' => null),
'nofollow' =>
array('subscribers' => true,
'members' => true,
'peopletag' => true),
); );

View File

@ -289,6 +289,7 @@ function get_nice_language_list()
*/ */
function get_all_languages() { function get_all_languages() {
return array( return array(
'af' => array('q' => 0.8, 'lang' => 'af', 'name' => 'Afrikaans', 'direction' => 'ltr'),
'ar' => array('q' => 0.8, 'lang' => 'ar', 'name' => 'Arabic', 'direction' => 'rtl'), 'ar' => array('q' => 0.8, 'lang' => 'ar', 'name' => 'Arabic', 'direction' => 'rtl'),
'arz' => array('q' => 0.8, 'lang' => 'arz', 'name' => 'Egyptian Spoken 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'), 'bg' => array('q' => 0.8, 'lang' => 'bg', 'name' => 'Bulgarian', 'direction' => 'ltr'),

View File

@ -139,25 +139,30 @@ class ProfileAction extends OwnerDesignAction
$this->elementStart('div', array('id' => 'entity_subscribers', $this->elementStart('div', array('id' => 'entity_subscribers',
'class' => 'section')); 'class' => 'section'));
$this->element('h2', null, _('Subscribers')); if (Event::handle('StartShowSubscribersMiniList', array($this))) {
$cnt = 0; $this->element('h2', null, _('Subscribers'));
if (!empty($profile)) { $cnt = 0;
$pml = new ProfileMiniList($profile, $this);
$cnt = $pml->show(); if (!empty($profile)) {
if ($cnt == 0) { $sml = new SubscribersMiniList($profile, $this);
$this->element('p', null, _('(None)')); $cnt = $sml->show();
if ($cnt == 0) {
$this->element('p', null, _('(None)'));
}
} }
}
if ($cnt > PROFILES_PER_MINILIST) { if ($cnt > PROFILES_PER_MINILIST) {
$this->elementStart('p'); $this->elementStart('p');
$this->element('a', array('href' => common_local_url('subscribers', $this->element('a', array('href' => common_local_url('subscribers',
array('nickname' => $this->profile->nickname)), array('nickname' => $this->profile->nickname)),
'class' => 'more'), 'class' => 'more'),
_('All subscribers')); _('All subscribers'));
$this->elementEnd('p'); $this->elementEnd('p');
}
Event::handle('EndShowSubscribersMiniList', array($this));
} }
$this->elementEnd('div'); $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;
}
}

View File

@ -181,9 +181,8 @@ class ProfileListItem extends Widget
function showAvatar() function showAvatar()
{ {
$avatar = $this->profile->getAvatar(AVATAR_STREAM_SIZE); $avatar = $this->profile->getAvatar(AVATAR_STREAM_SIZE);
$this->out->elementStart('a', array('href' => $this->profile->profileurl, $aAttrs = $this->linkAttributes();
'class' => 'url entry-title', $this->out->elementStart('a', $aAttrs);
'rel' => 'contact'));
$this->out->element('img', array('src' => ($avatar) ? $avatar->displayUrl() : Avatar::defaultImage(AVATAR_STREAM_SIZE), $this->out->element('img', array('src' => ($avatar) ? $avatar->displayUrl() : Avatar::defaultImage(AVATAR_STREAM_SIZE),
'class' => 'photo avatar', 'class' => 'photo avatar',
'width' => AVATAR_STREAM_SIZE, 'width' => AVATAR_STREAM_SIZE,
@ -223,8 +222,8 @@ class ProfileListItem extends Widget
{ {
if (!empty($this->profile->homepage)) { if (!empty($this->profile->homepage)) {
$this->out->text(' '); $this->out->text(' ');
$this->out->elementStart('a', array('href' => $this->profile->homepage, $aAttrs = $this->homepageAttributes();
'class' => 'url')); $this->out->elementStart('a', $aAttrs);
$this->out->raw($this->highlight($this->profile->homepage)); $this->out->raw($this->highlight($this->profile->homepage));
$this->out->elementEnd('a'); $this->out->elementEnd('a');
} }
@ -299,4 +298,17 @@ class ProfileListItem extends Widget
{ {
return htmlspecialchars($text); 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');
}
} }

View File

@ -81,20 +81,36 @@ class ProfileMiniListItem extends ProfileListItem
function show() function show()
{ {
$this->out->elementStart('li', 'vcard'); $this->out->elementStart('li', 'vcard');
$this->out->elementStart('a', array('title' => $this->profile->getBestName(), if (Event::handle('StartProfileListItemProfileElements', array($this))) {
'href' => $this->profile->profileurl, if (Event::handle('StartProfileListItemAvatar', array($this))) {
'rel' => 'contact member', $aAttrs = $this->linkAttributes();
'class' => 'url')); $this->out->elementStart('a', $aAttrs);
$avatar = $this->profile->getAvatar(AVATAR_MINI_SIZE); $avatar = $this->profile->getAvatar(AVATAR_MINI_SIZE);
$this->out->element('img', array('src' => (($avatar) ? $avatar->displayUrl() : Avatar::defaultImage(AVATAR_MINI_SIZE)), $this->out->element('img', array('src' => (($avatar) ? $avatar->displayUrl() : Avatar::defaultImage(AVATAR_MINI_SIZE)),
'width' => AVATAR_MINI_SIZE, 'width' => AVATAR_MINI_SIZE,
'height' => AVATAR_MINI_SIZE, 'height' => AVATAR_MINI_SIZE,
'class' => 'avatar photo', 'class' => 'avatar photo',
'alt' => ($this->profile->fullname) ? 'alt' => ($this->profile->fullname) ?
$this->profile->fullname : $this->profile->fullname :
$this->profile->nickname)); $this->profile->nickname));
$this->out->element('span', 'fn nickname', $this->profile->nickname); $this->out->element('span', 'fn nickname', $this->profile->nickname);
$this->out->elementEnd('a'); $this->out->elementEnd('a');
$this->out->elementEnd('li'); 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;
} }
} }

View File

@ -1,9 +1,56 @@
Localizations for StatusNet are being maintained through TranslateWiki: Localizations for StatusNet are being maintained through TranslateWiki:
http://translatewiki.net/wiki/Translating:StatusNet http://translatewiki.net/wiki/Translating:StatusNet
Note if you are working with a direct git checkout, you will need to build Ongoing translation work should be done there to ensure updates are
the binary .mo files from the .po source files for translations to work integrated into future versions of StatusNet.
in the web app.
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.

File diff suppressed because it is too large Load Diff

View File

@ -9,12 +9,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:27:34+0000\n" "PO-Revision-Date: 2010-04-05 18:54:34+0000\n"
"Language-Team: Arabic\n" "Language-Team: Arabic\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ar\n" "X-Language-Code: ar\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -191,7 +191,7 @@ msgstr ""
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
@ -464,14 +464,16 @@ msgstr "لست عضوًا في هذه المجموعة"
msgid "Could not remove user %1$s from group %2$s." msgid "Could not remove user %1$s from group %2$s."
msgstr "لم يمكن إزالة المستخدم %1$s من المجموعة %2$s." msgstr "لم يمكن إزالة المستخدم %1$s من المجموعة %2$s."
#: actions/apigrouplist.php:96 #. TRANS: %s is a user name
#: actions/apigrouplist.php:97
#, php-format #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "مجموعات %s" 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 #, 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 عضو فيها" msgstr "المجموعات التي %s عضو فيها"
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62

View File

@ -10,12 +10,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:27:37+0000\n" "PO-Revision-Date: 2010-04-05 18:54:37+0000\n"
"Language-Team: Egyptian Spoken Arabic\n" "Language-Team: Egyptian Spoken Arabic\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: arz\n" "X-Language-Code: arz\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -197,7 +197,7 @@ msgstr ""
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
@ -470,14 +470,16 @@ msgstr ""
msgid "Could not remove user %1$s from group %2$s." msgid "Could not remove user %1$s from group %2$s."
msgstr "ما نفعش يتشال اليوزر %1$s من الجروپ %2$s." msgstr "ما نفعش يتشال اليوزر %1$s من الجروپ %2$s."
#: actions/apigrouplist.php:96 #. TRANS: %s is a user name
#: actions/apigrouplist.php:97
#, php-format #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "مجموعات %s" 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 #, 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 عضو فيها" msgstr "المجموعات التى %s عضو فيها"
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62

View File

@ -9,12 +9,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:27:40+0000\n" "PO-Revision-Date: 2010-04-05 18:54:40+0000\n"
"Language-Team: Bulgarian\n" "Language-Team: Bulgarian\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: bg\n" "X-Language-Code: bg\n"
"X-Message-Group: out-statusnet\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/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
@ -471,14 +471,16 @@ msgstr "Не членувате в тази група."
msgid "Could not remove user %1$s from group %2$s." msgid "Could not remove user %1$s from group %2$s."
msgstr "Грешка при проследяване — потребителят не е намерен." msgstr "Грешка при проследяване — потребителят не е намерен."
#: actions/apigrouplist.php:96 #. TRANS: %s is a user name
#: actions/apigrouplist.php:97
#, php-format #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "Групи на %s" 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 #, 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" msgstr "Групи, в които участва %s"
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62

View File

@ -9,12 +9,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:27:43+0000\n" "PO-Revision-Date: 2010-04-05 18:54:43+0000\n"
"Language-Team: Dutch\n" "Language-Team: Dutch\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: br\n" "X-Language-Code: br\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -29,7 +29,7 @@ msgstr "Moned"
#. TRANS: Page notice #. TRANS: Page notice
#: actions/accessadminpanel.php:67 #: actions/accessadminpanel.php:67
msgid "Site access settings" msgid "Site access settings"
msgstr "" msgstr "Arventennoù moned d'al lec'hienn"
#. TRANS: Form legend for registration form. #. TRANS: Form legend for registration form.
#: actions/accessadminpanel.php:161 #: actions/accessadminpanel.php:161
@ -39,7 +39,7 @@ msgstr "Enskrivadur"
#. TRANS: Checkbox instructions for admin setting "Private" #. TRANS: Checkbox instructions for admin setting "Private"
#: actions/accessadminpanel.php:165 #: actions/accessadminpanel.php:165
msgid "Prohibit anonymous users (not logged in) from viewing site?" 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. #. TRANS: Checkbox label for prohibiting anonymous users from viewing site.
#: actions/accessadminpanel.php:167 #: 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/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
@ -263,7 +263,7 @@ msgstr ""
#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
msgid "Unable to save your design settings." msgid "Unable to save your design settings."
msgstr "" msgstr "Dibosupl eo enrollañ an arventennoù empentiñ."
#: actions/apiaccountupdateprofilebackgroundimage.php:187 #: actions/apiaccountupdateprofilebackgroundimage.php:187
#: actions/apiaccountupdateprofilecolors.php:142 #: actions/apiaccountupdateprofilecolors.php:142
@ -272,7 +272,7 @@ msgstr "Diposubl eo hizivat ho design."
#: actions/apiblockcreate.php:105 #: actions/apiblockcreate.php:105
msgid "You cannot block yourself!" 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 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
@ -362,7 +362,7 @@ msgstr "Ne c'hallit ket chom hep ho heuliañ hoc'h-unan."
#: actions/apifriendshipsexists.php:94 #: actions/apifriendshipsexists.php:94
msgid "Two user ids or screen_names must be supplied." 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 #: actions/apifriendshipsshow.php:134
msgid "Could not determine source user." 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/apigroupleave.php:104 actions/apigroupmembership.php:91
#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 #: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91
msgid "Group not found!" 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 #: actions/apigroupjoin.php:110 actions/joingroup.php:100
msgid "You are already a member of that group." 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." msgid "Could not remove user %1$s from group %2$s."
msgstr "Diposubl eo dilemel an implijer %1$s deus ar strollad %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 #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "Strollad %s" 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 #, 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ù" msgstr "Ezel eo %s eus ar strolladoù"
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62
@ -510,7 +512,7 @@ msgstr "Fichenn direizh."
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." 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 #: actions/apioauthauthorize.php:135
msgid "Invalid nickname / password!" msgid "Invalid nickname / password!"
@ -543,11 +545,11 @@ msgstr ""
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
#: actions/smssettings.php:248 lib/designsettings.php:304 #: actions/smssettings.php:248 lib/designsettings.php:304
msgid "Unexpected form submission." msgid "Unexpected form submission."
msgstr "" msgstr "Kinnig ar furmskrid dic'hortoz."
#: actions/apioauthauthorize.php:259 #: actions/apioauthauthorize.php:259
msgid "An application would like to connect to your account" 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 #: actions/apioauthauthorize.php:276
msgid "Allow or deny access" msgid "Allow or deny access"
@ -686,7 +688,7 @@ msgstr "Alioù merket gant %s"
#: actions/apitimelinetag.php:106 actions/tagrss.php:65 #: actions/apitimelinetag.php:106 actions/tagrss.php:65
#, php-format #, php-format
msgid "Updates tagged with %1$s on %2$s!" msgid "Updates tagged with %1$s on %2$s!"
msgstr "" msgstr "Hizivadennoù merket gant %1$s e %2$s !"
#: actions/apiusershow.php:96 #: actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
@ -761,7 +763,7 @@ msgstr "N'eus bet enporzhiet restr ebet."
#: actions/avatarsettings.php:332 #: actions/avatarsettings.php:332
msgid "Pick a square area of the image to be your avatar" 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 #: actions/avatarsettings.php:347 actions/grouplogo.php:380
msgid "Lost our file data." 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 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1219 #: lib/action.php:1219
msgid "There was a problem with your session token." 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 #: actions/deleteapplication.php:123 actions/deleteapplication.php:147
msgid "Delete application" msgid "Delete application"
@ -1080,7 +1082,7 @@ msgstr "Gweredekaat pe diweredekaat ar skeudenn foñs."
#: actions/designadminpanel.php:479 lib/designsettings.php:161 #: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image" msgid "Tile background image"
msgstr "" msgstr "Adober gant ar skeudenn drekleur"
#: actions/designadminpanel.php:488 lib/designsettings.php:170 #: actions/designadminpanel.php:488 lib/designsettings.php:170
msgid "Change colours" msgid "Change colours"
@ -1403,7 +1405,7 @@ msgstr "Dilamet eo bet ar chomlec'h."
#: actions/emailsettings.php:446 actions/smssettings.php:518 #: actions/emailsettings.php:446 actions/smssettings.php:518
msgid "No incoming email address." msgid "No incoming email address."
msgstr "" msgstr "Chomlec'h postel ebet o tont."
#: actions/emailsettings.php:456 actions/emailsettings.php:478 #: actions/emailsettings.php:456 actions/emailsettings.php:478
#: actions/smssettings.php:528 actions/smssettings.php:552 #: 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 #: actions/favor.php:92 lib/disfavorform.php:140
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "" msgstr "Tennañ ar pennroll"
#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
@ -2167,7 +2169,7 @@ msgstr ""
#: actions/noticesearch.php:78 #: actions/noticesearch.php:78
msgid "Text search" msgid "Text search"
msgstr "Klask un destenn" msgstr "Klask testennoù"
#: actions/noticesearch.php:91 #: actions/noticesearch.php:91
#, php-format #, php-format
@ -2355,7 +2357,7 @@ msgstr "Cheñch ger-tremen"
#: actions/passwordsettings.php:69 #: actions/passwordsettings.php:69
msgid "Change your password." msgid "Change your password."
msgstr "Kemmañ ho ger tremen." msgstr "Cheñch ger-tremen."
#: actions/passwordsettings.php:96 actions/recoverpassword.php:231 #: actions/passwordsettings.php:96 actions/recoverpassword.php:231
msgid "Password change" msgid "Password change"
@ -2445,7 +2447,7 @@ msgstr ""
#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
msgid "Site" msgid "Site"
msgstr "Lec'hien" msgstr "Lec'hienn"
#: actions/pathsadminpanel.php:238 #: actions/pathsadminpanel.php:238
msgid "Server" msgid "Server"
@ -2461,7 +2463,7 @@ msgstr "Hent"
#: actions/pathsadminpanel.php:242 #: actions/pathsadminpanel.php:242
msgid "Site path" msgid "Site path"
msgstr "Hent al lec'hien" msgstr "Hent al lec'hienn"
#: actions/pathsadminpanel.php:246 #: actions/pathsadminpanel.php:246
msgid "Path to locales" msgid "Path to locales"
@ -3377,7 +3379,7 @@ msgstr "Aliasoù"
#: actions/showgroup.php:302 #: actions/showgroup.php:302
msgid "Group actions" msgid "Group actions"
msgstr "Ober ar strollad" msgstr "Obererezh ar strollad"
#: actions/showgroup.php:338 #: actions/showgroup.php:338
#, php-format #, php-format
@ -3407,7 +3409,7 @@ msgstr "Izili"
#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 #: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)" msgid "(None)"
msgstr "(hini ebet)" msgstr "(Hini ebet)"
#: actions/showgroup.php:402 #: actions/showgroup.php:402
msgid "All members" msgid "All members"
@ -3654,18 +3656,16 @@ msgid "Edit site-wide message"
msgstr "Kemennadenn nevez" msgstr "Kemennadenn nevez"
#: actions/sitenoticeadminpanel.php:103 #: actions/sitenoticeadminpanel.php:103
#, fuzzy
msgid "Unable to save site notice." 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 #: actions/sitenoticeadminpanel.php:113
msgid "Max length for the site-wide notice is 255 chars" msgid "Max length for the site-wide notice is 255 chars"
msgstr "" msgstr ""
#: actions/sitenoticeadminpanel.php:176 #: actions/sitenoticeadminpanel.php:176
#, fuzzy
msgid "Site notice text" msgid "Site notice text"
msgstr "Eilañ an ali" msgstr "Testenn ali al lec'hienn"
#: actions/sitenoticeadminpanel.php:178 #: actions/sitenoticeadminpanel.php:178
msgid "Site-wide notice text (255 chars max; HTML okay)" msgid "Site-wide notice text (255 chars max; HTML okay)"
@ -3957,7 +3957,7 @@ msgstr ""
#: actions/tagother.php:65 #: actions/tagother.php:65
#, php-format #, php-format
msgid "Tag %s" msgid "Tag %s"
msgstr "" msgstr "Merk %s"
#: actions/tagother.php:77 lib/userprofile.php:76 #: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile" msgid "User profile"
@ -3970,7 +3970,7 @@ msgstr "Skeudenn"
#: actions/tagother.php:141 #: actions/tagother.php:141
msgid "Tag user" msgid "Tag user"
msgstr "" msgstr "Merkañ an implijer"
#: actions/tagother.php:151 #: actions/tagother.php:151
msgid "" msgid ""
@ -3985,7 +3985,7 @@ msgstr ""
#: actions/tagother.php:200 #: actions/tagother.php:200
msgid "Could not save tags." msgid "Could not save tags."
msgstr "" msgstr "Dibosupl eo enrollañ ar merkoù."
#: actions/tagother.php:236 #: actions/tagother.php:236
msgid "Use this form to add tags to your subscribers or subscriptions." msgid "Use this form to add tags to your subscribers or subscriptions."
@ -4001,7 +4001,7 @@ msgstr ""
#: actions/unblock.php:59 #: actions/unblock.php:59
msgid "You haven't blocked that user." msgid "You haven't blocked that user."
msgstr "" msgstr "N'o peus ket stanket an implijer-mañ."
#: actions/unsandbox.php:72 #: actions/unsandbox.php:72
msgid "User is not sandboxed." msgid "User is not sandboxed."
@ -4087,7 +4087,7 @@ msgstr "Pedadennoù"
#: actions/useradminpanel.php:256 #: actions/useradminpanel.php:256
msgid "Invitations enabled" msgid "Invitations enabled"
msgstr "" msgstr "Pedadennoù gweredekaet"
#: actions/useradminpanel.php:258 #: actions/useradminpanel.php:258
msgid "Whether to allow users to invite new users." msgid "Whether to allow users to invite new users."
@ -4127,11 +4127,11 @@ msgstr "Nac'hañ ar c'houmanant"
#: actions/userauthorization.php:232 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "" msgstr "Reked aotreañ ebet !"
#: actions/userauthorization.php:254 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "" msgstr "Koumanant aotreet"
#: actions/userauthorization.php:256 #: actions/userauthorization.php:256
msgid "" msgid ""
@ -4473,7 +4473,7 @@ msgstr "Personel"
#: lib/action.php:434 #: lib/action.php:434
msgctxt "TOOLTIP" msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile" 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" #. TRANS: Tooltip for main menu option "Services"
#: lib/action.php:439 #: lib/action.php:439
@ -4595,7 +4595,7 @@ msgstr "FAG"
#: lib/action.php:759 #: lib/action.php:759
msgid "TOS" msgid "TOS"
msgstr "" msgstr "AIH"
#: lib/action.php:762 #: lib/action.php:762
msgid "Privacy" msgid "Privacy"
@ -5256,7 +5256,7 @@ msgstr ""
#: lib/galleryaction.php:140 #: lib/galleryaction.php:140
msgid "Tag" msgid "Tag"
msgstr "Merk" msgstr "Balizenn"
#: lib/galleryaction.php:141 #: lib/galleryaction.php:141
msgid "Choose a tag to narrow list" msgid "Choose a tag to narrow list"
@ -5396,7 +5396,7 @@ msgstr "Stagañ"
#: lib/leaveform.php:114 #: lib/leaveform.php:114
msgid "Leave" msgid "Leave"
msgstr "Kuitañ" msgstr "Kuitaat"
#: lib/logingroupnav.php:80 #: lib/logingroupnav.php:80
msgid "Login with a username and password" msgid "Login with a username and password"

View File

@ -10,12 +10,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:27:46+0000\n" "PO-Revision-Date: 2010-04-05 18:54:46+0000\n"
"Language-Team: Catalan\n" "Language-Team: Catalan\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ca\n" "X-Language-Code: ca\n"
"X-Message-Group: out-statusnet\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/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: 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." msgid "Could not remove user %1$s from group %2$s."
msgstr "No s'ha pogut suprimir l'usuari %s del grup %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 #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "Grups de %s" 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 #, 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" msgstr "%s grups són membres de"
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62

View File

@ -9,12 +9,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:27:49+0000\n" "PO-Revision-Date: 2010-04-05 18:54:49+0000\n"
"Language-Team: Czech\n" "Language-Team: Czech\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: cs\n" "X-Language-Code: cs\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -199,7 +199,7 @@ msgstr ""
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: 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." msgid "Could not remove user %1$s from group %2$s."
msgstr "Nelze vytvořit OpenID z: %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 #, fuzzy, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "Profil" 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 #, 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" msgstr "Neodeslal jste nám profil"
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62

View File

@ -15,12 +15,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:27:52+0000\n" "PO-Revision-Date: 2010-04-05 18:54:52+0000\n"
"Language-Team: German\n" "Language-Team: German\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: de\n" "X-Language-Code: de\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -207,7 +207,7 @@ msgstr "Aktualisierungen von %1$s und Freunden auf %2$s!"
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: 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." msgid "Could not remove user %1$s from group %2$s."
msgstr "Konnte Benutzer %1$s nicht aus der Gruppe %2$s entfernen." 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 #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "%ss Gruppen" msgstr "%ss 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 #, 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" msgstr "Gruppen in denen %s Mitglied ist"
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62

View File

@ -10,12 +10,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:27:55+0000\n" "PO-Revision-Date: 2010-04-05 18:54:55+0000\n"
"Language-Team: Greek\n" "Language-Team: Greek\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: el\n" "X-Language-Code: el\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -196,7 +196,7 @@ msgstr ""
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
@ -478,14 +478,16 @@ msgstr ""
msgid "Could not remove user %1$s from group %2$s." msgid "Could not remove user %1$s from group %2$s."
msgstr "Αδύνατη η αποθήκευση του προφίλ." msgstr "Αδύνατη η αποθήκευση του προφίλ."
#: actions/apigrouplist.php:96 #. TRANS: %s is a user name
#: actions/apigrouplist.php:97
#, php-format #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "ομάδες των χρηστών %s" 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 #, 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 "Δεν είστε μέλος καμίας ομάδας." msgstr "Δεν είστε μέλος καμίας ομάδας."
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62

File diff suppressed because it is too large Load Diff

View File

@ -10,12 +10,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:28:02+0000\n" "PO-Revision-Date: 2010-04-05 18:54:58+0000\n"
"Language-Team: British English\n" "Language-Team: British English\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: en-gb\n" "X-Language-Code: en-gb\n"
"X-Message-Group: out-statusnet\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/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: 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." msgid "Could not remove user %1$s from group %2$s."
msgstr "Could not remove user %1$s to 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 #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "%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 #, 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" msgstr "Groups %s is a member of"
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62

File diff suppressed because it is too large Load Diff

View File

@ -10,8 +10,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:28:13+0000\n" "PO-Revision-Date: 2010-04-05 18:55:15+0000\n"
"Last-Translator: Ahmad Sufi Mahmudi\n" "Last-Translator: Ahmad Sufi Mahmudi\n"
"Language-Team: Persian\n" "Language-Team: Persian\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -20,7 +20,7 @@ msgstr ""
"X-Language-Code: fa\n" "X-Language-Code: fa\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
"Plural-Forms: nplurals=1; plural=0;\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" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
#. TRANS: Page title #. TRANS: Page title
@ -204,7 +204,7 @@ msgstr "به روز رسانی از %1$ و دوستان در %2$"
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
@ -481,14 +481,16 @@ msgstr "شما یک عضو این گروه نیستید."
msgid "Could not remove user %1$s from group %2$s." msgid "Could not remove user %1$s from group %2$s."
msgstr "خارج شدن %s از گروه %s نا موفق بود" msgstr "خارج شدن %s از گروه %s نا موفق بود"
#: actions/apigrouplist.php:96 #. TRANS: %s is a user name
#: actions/apigrouplist.php:97
#, php-format #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "گروه‌های %s" 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 #, 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 گروه" msgstr "هست عضو %s گروه"
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62

View File

@ -10,12 +10,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:28:09+0000\n" "PO-Revision-Date: 2010-04-05 18:55:08+0000\n"
"Language-Team: Finnish\n" "Language-Team: Finnish\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fi\n" "X-Language-Code: fi\n"
"X-Message-Group: out-statusnet\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/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: 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." msgid "Could not remove user %1$s from group %2$s."
msgstr "Ei voitu poistaa käyttäjää %s ryhmästä %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 #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "Käyttäjän %s ryhmät" 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 #, 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" msgstr "Ryhmät, joiden jäsen %s on"
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62

View File

@ -14,12 +14,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-06 22:53+0000\n"
"PO-Revision-Date: 2010-04-03 13:28:16+0000\n" "PO-Revision-Date: 2010-04-06 22:54:27+0000\n"
"Language-Team: French\n" "Language-Team: French\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fr\n" "X-Language-Code: fr\n"
"X-Message-Group: out-statusnet\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/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: 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." msgid "Could not remove user %1$s from group %2$s."
msgstr "Impossible de retirer lutilisateur %1$s du groupe %2$s." msgstr "Impossible de retirer lutilisateur %1$s du groupe %2$s."
#: actions/apigrouplist.php:96 #. TRANS: %s is a user name
#: actions/apigrouplist.php:97
#, php-format #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "Groupes de %s" msgstr "Groupes 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
#, fuzzy, php-format #: actions/apigrouplist.php:107
msgid "Groups %1$s is a member of on %2$s." #, php-format
msgstr "Groupes de %s" 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 #: actions/apigrouplistall.php:90 actions/usergroups.php:62
#, php-format #, php-format
@ -848,7 +850,7 @@ msgstr "Ne pas bloquer cet utilisateur"
msgid "Yes" msgid "Yes"
msgstr "Oui" 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" msgid "Block this user"
msgstr "Bloquer cet utilisateur" msgstr "Bloquer cet utilisateur"
@ -948,7 +950,7 @@ msgid "Conversation"
msgstr "Conversation" msgstr "Conversation"
#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 #: 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" msgid "Notices"
msgstr "Avis" msgstr "Avis"
@ -1642,7 +1644,7 @@ msgstr "Cet utilisateur est déjà bloqué pour le groupe."
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "Lutilisateur nest pas membre du groupe." msgstr "Lutilisateur nest 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" msgid "Block user from group"
msgstr "Bloquer cet utilisateur du groupe" msgstr "Bloquer cet utilisateur du groupe"
@ -1745,19 +1747,19 @@ msgstr "Liste des utilisateurs inscrits à ce groupe."
msgid "Admin" msgid "Admin"
msgstr "Administrer" msgstr "Administrer"
#: actions/groupmembers.php:355 lib/blockform.php:69 #: actions/groupmembers.php:373 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "Bloquer" msgstr "Bloquer"
#: actions/groupmembers.php:450 #: actions/groupmembers.php:468
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "Faire de cet utilisateur un administrateur du groupe" msgstr "Faire de cet utilisateur un administrateur du groupe"
#: actions/groupmembers.php:482 #: actions/groupmembers.php:500
msgid "Make Admin" msgid "Make Admin"
msgstr "Faire un administrateur" msgstr "Faire un administrateur"
#: actions/groupmembers.php:482 #: actions/groupmembers.php:500
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "Faire de cet utilisateur un administrateur" 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!" msgid "Updates from members of %1$s on %2$s!"
msgstr "Mises à jour des membres de %1$s dans %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 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
msgid "Groups" msgid "Groups"
msgstr "Groupes" msgstr "Groupes"
@ -2718,12 +2720,12 @@ msgstr ""
msgid "People search" msgid "People search"
msgstr "Recherche de personnes" msgstr "Recherche de personnes"
#: actions/peopletag.php:70 #: actions/peopletag.php:68
#, php-format #, php-format
msgid "Not a valid people tag: %s" msgid "Not a valid people tag: %s"
msgstr "Cette marque est invalide : %s" msgstr "Cette marque est invalide : %s"
#: actions/peopletag.php:144 #: actions/peopletag.php:142
#, php-format #, php-format
msgid "Users self-tagged with %1$s - page %2$d" msgid "Users self-tagged with %1$s - page %2$d"
msgstr "Utilisateurs marqués par eux-mêmes avec %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" msgid "Description"
msgstr "Description" msgstr "Description"
#: actions/showapplication.php:192 actions/showgroup.php:439 #: actions/showapplication.php:192 actions/showgroup.php:444
#: lib/profileaction.php:182 #: lib/profileaction.php:187
msgid "Statistics" msgid "Statistics"
msgstr "Statistiques" msgstr "Statistiques"
@ -3620,25 +3622,25 @@ msgstr "Fil des avis du groupe %s (Atom)"
msgid "FOAF for %s group" msgid "FOAF for %s group"
msgstr "ami dun ami pour le groupe %s" msgstr "ami dun 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" msgid "Members"
msgstr "Membres" msgstr "Membres"
#: actions/showgroup.php:396 lib/profileaction.php:117 #: actions/showgroup.php:398 lib/profileaction.php:117
#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)" msgid "(None)"
msgstr "(aucun)" msgstr "(aucun)"
#: actions/showgroup.php:402 #: actions/showgroup.php:404
msgid "All members" msgid "All members"
msgstr "Tous les membres" msgstr "Tous les membres"
#: actions/showgroup.php:442 #: actions/showgroup.php:447
msgid "Created" msgid "Created"
msgstr "Créé" msgstr "Créé"
#: actions/showgroup.php:458 #: actions/showgroup.php:463
#, php-format #, php-format
msgid "" msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "**%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 " "action.register%%%%) pour devenir membre de ce groupe et bien plus ! ([En "
"lire plus](%%%%doc.help%%%%))" "lire plus](%%%%doc.help%%%%))"
#: actions/showgroup.php:464 #: actions/showgroup.php:469
#, php-format #, php-format
msgid "" msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "**%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 " "logiciel libre [StatusNet](http://status.net/). Ses membres partagent des "
"messages courts à propos de leur vie et leurs intérêts. " "messages courts à propos de leur vie et leurs intérêts. "
#: actions/showgroup.php:492 #: actions/showgroup.php:497
msgid "Admins" msgid "Admins"
msgstr "Administrateurs" msgstr "Administrateurs"
@ -6288,7 +6290,7 @@ msgstr "Marques dans les avis de %s"
msgid "Unknown" msgid "Unknown"
msgstr "Inconnu" 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" msgid "Subscriptions"
msgstr "Abonnements" msgstr "Abonnements"
@ -6296,28 +6298,28 @@ msgstr "Abonnements"
msgid "All subscriptions" msgid "All subscriptions"
msgstr "Tous les abonnements" 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" msgid "Subscribers"
msgstr "Abonnés" msgstr "Abonnés"
#: lib/profileaction.php:159 #: lib/profileaction.php:161
msgid "All subscribers" msgid "All subscribers"
msgstr "Tous les abonnés" msgstr "Tous les abonnés"
#: lib/profileaction.php:186 #: lib/profileaction.php:191
msgid "User ID" msgid "User ID"
msgstr "ID de lutilisateur" msgstr "ID de lutilisateur"
#: lib/profileaction.php:191 #: lib/profileaction.php:196
msgid "Member since" msgid "Member since"
msgstr "Membre depuis" msgstr "Membre depuis"
#. TRANS: Average count of posts made per day since account registration #. TRANS: Average count of posts made per day since account registration
#: lib/profileaction.php:230 #: lib/profileaction.php:235
msgid "Daily average" msgid "Daily average"
msgstr "Moyenne journalière" msgstr "Moyenne journalière"
#: lib/profileaction.php:259 #: lib/profileaction.php:264
msgid "All groups" msgid "All groups"
msgstr "Tous les groupes" msgstr "Tous les groupes"

View File

@ -8,12 +8,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:28:19+0000\n" "PO-Revision-Date: 2010-04-05 18:55:21+0000\n"
"Language-Team: Irish\n" "Language-Team: Irish\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ga\n" "X-Language-Code: ga\n"
"X-Message-Group: out-statusnet\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/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: 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." msgid "Could not remove user %1$s from group %2$s."
msgstr "Non podes seguir a este usuario: o Usuario non se atopa." 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 #, fuzzy, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "Usuarios" 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 #, 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." msgstr "%1s non é unha orixe fiable."
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62

View File

@ -7,12 +7,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:28:26+0000\n" "PO-Revision-Date: 2010-04-05 18:55:24+0000\n"
"Language-Team: Hebrew\n" "Language-Team: Hebrew\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: he\n" "X-Language-Code: he\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -197,7 +197,7 @@ msgstr ""
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
@ -483,14 +483,16 @@ msgstr "לא שלחנו אלינו את הפרופיל הזה"
msgid "Could not remove user %1$s from group %2$s." msgid "Could not remove user %1$s from group %2$s."
msgstr "נכשלה יצירת OpenID מתוך: %s" msgstr "נכשלה יצירת OpenID מתוך: %s"
#: actions/apigrouplist.php:96 #. TRANS: %s is a user name
#: actions/apigrouplist.php:97
#, fuzzy, php-format #, fuzzy, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "פרופיל" 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 #, 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 "לא שלחנו אלינו את הפרופיל הזה" msgstr "לא שלחנו אלינו את הפרופיל הזה"
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62

View File

@ -9,12 +9,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:28:29+0000\n" "PO-Revision-Date: 2010-04-05 18:55:27+0000\n"
"Language-Team: Dutch\n" "Language-Team: Dutch\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: hsb\n" "X-Language-Code: hsb\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -191,7 +191,7 @@ msgstr ""
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: 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." msgid "Could not remove user %1$s from group %2$s."
msgstr "Njebě móžno wužiwarja %1$s ze skupiny %2$s wotstronić." 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 #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "" 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 #, php-format
msgid "Groups %1$s is a member of on %2$s." msgid "%1$s groups %2$s is a member of."
msgstr "" msgstr ""
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62

View File

@ -8,12 +8,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:28:32+0000\n" "PO-Revision-Date: 2010-04-05 18:55:30+0000\n"
"Language-Team: Interlingua\n" "Language-Team: Interlingua\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n" "X-Language-Code: ia\n"
"X-Message-Group: out-statusnet\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/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: 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." msgid "Could not remove user %1$s from group %2$s."
msgstr "Non poteva remover le usator %1$s del gruppo %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 #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "Gruppos de %s" 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 #, 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" msgstr "Gruppos del quales %s es membro"
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62
@ -777,9 +779,8 @@ msgid "Crop"
msgstr "Taliar" msgstr "Taliar"
#: actions/avatarsettings.php:305 #: actions/avatarsettings.php:305
#, fuzzy
msgid "No file uploaded." msgid "No file uploaded."
msgstr "Nulle profilo specificate." msgstr "Nulle file incargate."
#: actions/avatarsettings.php:332 #: actions/avatarsettings.php:332
msgid "Pick a square area of the image to be your avatar" msgid "Pick a square area of the image to be your avatar"
@ -3766,9 +3767,8 @@ msgid "Unknown language \"%s\"."
msgstr "Lingua \"%s\" incognite." msgstr "Lingua \"%s\" incognite."
#: actions/siteadminpanel.php:165 #: actions/siteadminpanel.php:165
#, fuzzy
msgid "Minimum text limit is 0 (unlimited)." 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 #: actions/siteadminpanel.php:171
msgid "Dupe limit must 1 or more seconds." msgid "Dupe limit must 1 or more seconds."
@ -4938,6 +4938,8 @@ msgstr "Ante"
#: lib/activity.php:120 #: lib/activity.php:120
msgid "Expecting a root feed element but got a whole XML document." msgid "Expecting a root feed element but got a whole XML document."
msgstr "" msgstr ""
"Expectava le elemento-radice de un syndication, ma recipeva un documento XML "
"integre."
#: lib/activityutils.php:208 #: lib/activityutils.php:208
msgid "Can't handle remote content yet." 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 #. TRANS: Average count of posts made per day since account registration
#: lib/profileaction.php:230 #: lib/profileaction.php:230
msgid "Daily average" msgid "Daily average"
msgstr "" msgstr "Media de cata die"
#: lib/profileaction.php:259 #: lib/profileaction.php:259
msgid "All groups" msgid "All groups"
@ -6424,9 +6426,9 @@ msgid "Unsubscribe"
msgstr "Cancellar subscription" msgstr "Cancellar subscription"
#: lib/usernoprofileexception.php:58 #: lib/usernoprofileexception.php:58
#, fuzzy, php-format #, php-format
msgid "User %s (%d) has no profile record." 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 #: lib/userprofile.php:117
msgid "Edit Avatar" msgid "Edit Avatar"
@ -6438,7 +6440,7 @@ msgstr "Actiones de usator"
#: lib/userprofile.php:237 #: lib/userprofile.php:237
msgid "User deletion in progress..." msgid "User deletion in progress..."
msgstr "" msgstr "Deletion del usator in curso…"
#: lib/userprofile.php:263 #: lib/userprofile.php:263
msgid "Edit profile settings" msgid "Edit profile settings"

View File

@ -8,12 +8,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:28:35+0000\n" "PO-Revision-Date: 2010-04-05 18:55:33+0000\n"
"Language-Team: Icelandic\n" "Language-Team: Icelandic\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: is\n" "X-Language-Code: is\n"
"X-Message-Group: out-statusnet\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/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: 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." msgid "Could not remove user %1$s from group %2$s."
msgstr "Gat ekki fjarlægt notandann %s úr hópnum %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 #, fuzzy, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "Hópar %s" 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 #, 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 í" msgstr "Hópar sem %s er meðlimur í"
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62

View File

@ -9,12 +9,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:28:39+0000\n" "PO-Revision-Date: 2010-04-05 18:55:36+0000\n"
"Language-Team: Italian\n" "Language-Team: Italian\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: it\n" "X-Language-Code: it\n"
"X-Message-Group: out-statusnet\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/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: 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." msgid "Could not remove user %1$s from group %2$s."
msgstr "Impossibile rimuovere l'utente %1$s dal gruppo %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 #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "Gruppi di %s" 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 #, 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" msgstr "Gruppi di cui %s fa parte"
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62

View File

@ -11,12 +11,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:28:43+0000\n" "PO-Revision-Date: 2010-04-05 18:55:39+0000\n"
"Language-Team: Japanese\n" "Language-Team: Japanese\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ja\n" "X-Language-Code: ja\n"
"X-Message-Group: out-statusnet\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/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
@ -480,14 +480,16 @@ msgstr "このグループのメンバーではありません。"
msgid "Could not remove user %1$s from group %2$s." msgid "Could not remove user %1$s from group %2$s."
msgstr "ユーザ %1$s をグループ %2$s から削除できません。" msgstr "ユーザ %1$s をグループ %2$s から削除できません。"
#: actions/apigrouplist.php:96 #. TRANS: %s is a user name
#: actions/apigrouplist.php:97
#, php-format #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "%s のグループ" 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 #, 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 はメンバー" msgstr "グループ %s はメンバー"
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62

View File

@ -8,12 +8,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:28:46+0000\n" "PO-Revision-Date: 2010-04-05 18:55:43+0000\n"
"Language-Team: Korean\n" "Language-Team: Korean\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ko\n" "X-Language-Code: ko\n"
"X-Message-Group: out-statusnet\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/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
@ -328,22 +328,20 @@ msgid "No status found with that ID."
msgstr "그 ID로 발견된 상태가 없습니다." msgstr "그 ID로 발견된 상태가 없습니다."
#: actions/apifavoritecreate.php:119 #: actions/apifavoritecreate.php:119
#, fuzzy
msgid "This status is already a favorite." msgid "This status is already a favorite."
msgstr "이 게시글은 이미 좋아하는 게시글입니다." msgstr "이 소식은 이미 관심소식으로 등록되어 있습니다."
#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279 #: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:279
msgid "Could not create favorite." msgid "Could not create favorite."
msgstr "좋아하는 게시글을 생성할 수 없습니다." msgstr "관심소식을 생성할 수 없습니다."
#: actions/apifavoritedestroy.php:122 #: actions/apifavoritedestroy.php:122
#, fuzzy
msgid "That status is not a favorite." msgid "That status is not a favorite."
msgstr "이 메시지는 favorite이 아닙니다." msgstr "이 소식은 관심소식이 아닙니다."
#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 #: actions/apifavoritedestroy.php:134 actions/disfavor.php:87
msgid "Could not delete favorite." msgid "Could not delete favorite."
msgstr "favorite을 삭제할 수 없습니다." msgstr "관심소식을 삭제할 수 없습니다."
#: actions/apifriendshipscreate.php:109 #: actions/apifriendshipscreate.php:109
msgid "Could not follow user: User not found." msgid "Could not follow user: User not found."
@ -449,7 +447,6 @@ msgid "Group not found!"
msgstr "그룹을 찾을 수 없습니다." msgstr "그룹을 찾을 수 없습니다."
#: actions/apigroupjoin.php:110 actions/joingroup.php:100 #: actions/apigroupjoin.php:110 actions/joingroup.php:100
#, fuzzy
msgid "You are already a member of that group." msgid "You are already a member of that group."
msgstr "당신은 이미 이 그룹의 멤버입니다." msgstr "당신은 이미 이 그룹의 멤버입니다."
@ -463,7 +460,6 @@ msgid "Could not join user %1$s to group %2$s."
msgstr "이용자 %1$s 의 그룹 %2$s 가입에 실패했습니다." msgstr "이용자 %1$s 의 그룹 %2$s 가입에 실패했습니다."
#: actions/apigroupleave.php:114 #: actions/apigroupleave.php:114
#, fuzzy
msgid "You are not a member of this group." msgid "You are not a member of this group."
msgstr "당신은 해당 그룹의 멤버가 아닙니다." msgstr "당신은 해당 그룹의 멤버가 아닙니다."
@ -472,14 +468,16 @@ msgstr "당신은 해당 그룹의 멤버가 아닙니다."
msgid "Could not remove user %1$s from group %2$s." msgid "Could not remove user %1$s from group %2$s."
msgstr "그룹 %s에서 %s 사용자를 제거할 수 없습니다." msgstr "그룹 %s에서 %s 사용자를 제거할 수 없습니다."
#: actions/apigrouplist.php:96 #. TRANS: %s is a user name
#: actions/apigrouplist.php:97
#, php-format #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "%s의 그룹들" 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 #, 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 그룹들은 의 멤버입니다." msgstr "%s 그룹들은 의 멤버입니다."
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62
@ -632,9 +630,9 @@ msgstr "발견된 ID의 상태가 없습니다."
#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: actions/apistatusesupdate.php:161 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, fuzzy, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "너무 깁니다. 통지의 최대 길이는 140글자 입니다." msgstr "너무 깁니다. 통지의 최대 길이는 %d 글자 입니다."
#: actions/apistatusesupdate.php:202 #: actions/apistatusesupdate.php:202
msgid "Not found" msgid "Not found"
@ -1047,7 +1045,7 @@ msgstr ""
#: actions/designadminpanel.php:73 #: actions/designadminpanel.php:73
msgid "Design settings for this StatusNet site." msgid "Design settings for this StatusNet site."
msgstr "" msgstr "이 StatusNet 사이트에 대한 디자인 설정"
#: actions/designadminpanel.php:275 #: actions/designadminpanel.php:275
msgid "Invalid logo URL." msgid "Invalid logo URL."
@ -1067,28 +1065,25 @@ msgid "Site logo"
msgstr "사이트 로고" msgstr "사이트 로고"
#: actions/designadminpanel.php:387 #: actions/designadminpanel.php:387
#, fuzzy
msgid "Change theme" msgid "Change theme"
msgstr "변환" msgstr "테마 바꾸기"
#: actions/designadminpanel.php:404 #: actions/designadminpanel.php:404
#, fuzzy
msgid "Site theme" msgid "Site theme"
msgstr "사이트 공지" msgstr "사이트 테마"
#: actions/designadminpanel.php:405 #: actions/designadminpanel.php:405
#, fuzzy
msgid "Theme for the site." msgid "Theme for the site."
msgstr "이 사이트로부터 로그아웃" msgstr "사이트에 대한 테마"
#: actions/designadminpanel.php:417 lib/designsettings.php:101 #: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image" msgid "Change background image"
msgstr "" msgstr "배경 이미지 바꾸기"
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 #: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178 #: lib/designsettings.php:178
msgid "Background" msgid "Background"
msgstr "" msgstr "배경"
#: actions/designadminpanel.php:427 #: actions/designadminpanel.php:427
#, php-format #, php-format
@ -1864,9 +1859,8 @@ msgstr ""
"래 당신의 주소와 환경설정을 조정하세요." "래 당신의 주소와 환경설정을 조정하세요."
#: actions/imsettings.php:89 #: actions/imsettings.php:89
#, fuzzy
msgid "IM is not available." msgid "IM is not available."
msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." msgstr "인스턴트 메신저를 사용할 수 없습니다."
#: actions/imsettings.php:106 #: actions/imsettings.php:106
msgid "Current confirmed Jabber/GTalk address." msgid "Current confirmed Jabber/GTalk address."

View File

@ -9,12 +9,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-06 22:53+0000\n"
"PO-Revision-Date: 2010-04-03 13:28:49+0000\n" "PO-Revision-Date: 2010-04-06 22:54:54+0000\n"
"Language-Team: Macedonian\n" "Language-Team: Macedonian\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n" "X-Language-Code: mk\n"
"X-Message-Group: out-statusnet\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/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
@ -481,15 +481,17 @@ msgstr "Не членувате во оваа група."
msgid "Could not remove user %1$s from group %2$s." msgid "Could not remove user %1$s from group %2$s."
msgstr "Не можев да го отстранам корисникот %1$s од групата %2$s." msgstr "Не можев да го отстранам корисникот %1$s од групата %2$s."
#: actions/apigrouplist.php:96 #. TRANS: %s is a user name
#: actions/apigrouplist.php:97
#, php-format #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "%s групи" 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
#, fuzzy, php-format #: actions/apigrouplist.php:107
msgid "Groups %1$s is a member of on %2$s." #, php-format
msgstr "Групи кадешто членува %s" msgid "%1$s groups %2$s is a member of."
msgstr "%1$s групи кадешто членува %2$s."
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62
#, php-format #, php-format
@ -838,7 +840,7 @@ msgstr "Не го блокирај корисников"
msgid "Yes" msgid "Yes"
msgstr "Да" 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" msgid "Block this user"
msgstr "Блокирај го корисников" msgstr "Блокирај го корисников"
@ -938,7 +940,7 @@ msgid "Conversation"
msgstr "Разговор" msgstr "Разговор"
#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 #: 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" msgid "Notices"
msgstr "Забелешки" msgstr "Забелешки"
@ -1634,7 +1636,7 @@ msgstr "Корисникот е веќе блокиран од оваа груп
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "Корисникот не членува во групата." msgstr "Корисникот не членува во групата."
#: actions/groupblock.php:136 actions/groupmembers.php:323 #: actions/groupblock.php:136 actions/groupmembers.php:341
msgid "Block user from group" msgid "Block user from group"
msgstr "Блокирај корисник од група" msgstr "Блокирај корисник од група"
@ -1738,19 +1740,19 @@ msgstr "Листа на корисниците на овааг група."
msgid "Admin" msgid "Admin"
msgstr "Администратор" msgstr "Администратор"
#: actions/groupmembers.php:355 lib/blockform.php:69 #: actions/groupmembers.php:373 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "Блокирај" msgstr "Блокирај"
#: actions/groupmembers.php:450 #: actions/groupmembers.php:468
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "Направи го корисникот администратор на групата" msgstr "Направи го корисникот администратор на групата"
#: actions/groupmembers.php:482 #: actions/groupmembers.php:500
msgid "Make Admin" msgid "Make Admin"
msgstr "Направи го/ја администратор" msgstr "Направи го/ја администратор"
#: actions/groupmembers.php:482 #: actions/groupmembers.php:500
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "Направи го корисникот администратор" msgstr "Направи го корисникот администратор"
@ -1765,7 +1767,7 @@ msgstr "Историја на %s"
msgid "Updates from members of %1$s on %2$s!" msgid "Updates from members of %1$s on %2$s!"
msgstr "Подновувања од членови на %1$s на %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 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
msgid "Groups" msgid "Groups"
msgstr "Групи" msgstr "Групи"
@ -2698,12 +2700,12 @@ msgstr ""
msgid "People search" msgid "People search"
msgstr "Пребарување на луѓе" msgstr "Пребарување на луѓе"
#: actions/peopletag.php:70 #: actions/peopletag.php:68
#, php-format #, php-format
msgid "Not a valid people tag: %s" msgid "Not a valid people tag: %s"
msgstr "Не е важечка ознака за луѓе: %s" msgstr "Не е важечка ознака за луѓе: %s"
#: actions/peopletag.php:144 #: actions/peopletag.php:142
#, php-format #, php-format
msgid "Users self-tagged with %1$s - page %2$d" msgid "Users self-tagged with %1$s - page %2$d"
msgstr "Користници самоозначени со %1$s - стр. %2$d" msgstr "Користници самоозначени со %1$s - стр. %2$d"
@ -3431,8 +3433,8 @@ msgstr "Организација"
msgid "Description" msgid "Description"
msgstr "Опис" msgstr "Опис"
#: actions/showapplication.php:192 actions/showgroup.php:439 #: actions/showapplication.php:192 actions/showgroup.php:444
#: lib/profileaction.php:182 #: lib/profileaction.php:187
msgid "Statistics" msgid "Statistics"
msgstr "Статистики" msgstr "Статистики"
@ -3596,25 +3598,25 @@ msgstr "Канал со забелешки за групата%s (Atom)"
msgid "FOAF for %s group" msgid "FOAF for %s group"
msgstr "FOAF за групата %s" 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" msgid "Members"
msgstr "Членови" msgstr "Членови"
#: actions/showgroup.php:396 lib/profileaction.php:117 #: actions/showgroup.php:398 lib/profileaction.php:117
#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)" msgid "(None)"
msgstr "(Нема)" msgstr "(Нема)"
#: actions/showgroup.php:402 #: actions/showgroup.php:404
msgid "All members" msgid "All members"
msgstr "Сите членови" msgstr "Сите членови"
#: actions/showgroup.php:442 #: actions/showgroup.php:447
msgid "Created" msgid "Created"
msgstr "Создадено" msgstr "Создадено"
#: actions/showgroup.php:458 #: actions/showgroup.php:463
#, php-format #, php-format
msgid "" msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@ -3630,7 +3632,7 @@ msgstr ""
"се](%%%%action.register%%%%) за да станете дел од оваа група и многу повеќе! " "се](%%%%action.register%%%%) за да станете дел од оваа група и многу повеќе! "
"([Прочитајте повеќе](%%%%doc.help%%%%))" "([Прочитајте повеќе](%%%%doc.help%%%%))"
#: actions/showgroup.php:464 #: actions/showgroup.php:469
#, php-format #, php-format
msgid "" msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@ -3643,7 +3645,7 @@ msgstr ""
"слободната програмска алатка [StatusNet](http://status.net/). Нејзините " "слободната програмска алатка [StatusNet](http://status.net/). Нејзините "
"членови си разменуваат кратки пораки за нивниот живот и интереси. " "членови си разменуваат кратки пораки за нивниот живот и интереси. "
#: actions/showgroup.php:492 #: actions/showgroup.php:497
msgid "Admins" msgid "Admins"
msgstr "Администратори" msgstr "Администратори"
@ -6248,7 +6250,7 @@ msgstr "Ознаки во забелешките на %s"
msgid "Unknown" msgid "Unknown"
msgstr "Непознато" 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" msgid "Subscriptions"
msgstr "Претплати" msgstr "Претплати"
@ -6256,28 +6258,28 @@ msgstr "Претплати"
msgid "All subscriptions" msgid "All subscriptions"
msgstr "Сите претплати" 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" msgid "Subscribers"
msgstr "Претплатници" msgstr "Претплатници"
#: lib/profileaction.php:159 #: lib/profileaction.php:161
msgid "All subscribers" msgid "All subscribers"
msgstr "Сите претплатници" msgstr "Сите претплатници"
#: lib/profileaction.php:186 #: lib/profileaction.php:191
msgid "User ID" msgid "User ID"
msgstr "Кориснички ID" msgstr "Кориснички ID"
#: lib/profileaction.php:191 #: lib/profileaction.php:196
msgid "Member since" msgid "Member since"
msgstr "Член од" msgstr "Член од"
#. TRANS: Average count of posts made per day since account registration #. TRANS: Average count of posts made per day since account registration
#: lib/profileaction.php:230 #: lib/profileaction.php:235
msgid "Daily average" msgid "Daily average"
msgstr "Дневен просек" msgstr "Дневен просек"
#: lib/profileaction.php:259 #: lib/profileaction.php:264
msgid "All groups" msgid "All groups"
msgstr "Сите групи" msgstr "Сите групи"

View File

@ -9,12 +9,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:28:52+0000\n" "PO-Revision-Date: 2010-04-05 18:55:50+0000\n"
"Language-Team: Norwegian (bokmål)\n" "Language-Team: Norwegian (bokmål)\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: no\n" "X-Language-Code: no\n"
"X-Message-Group: out-statusnet\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/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: 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." msgid "Could not remove user %1$s from group %2$s."
msgstr "Kunne ikke fjerne bruker %1$s fra gruppe %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 #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "%s sine grupper" 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 #, 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." msgstr "%s er ikke medlem av noen gruppe."
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62

View File

@ -10,12 +10,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-06 22:53+0000\n"
"PO-Revision-Date: 2010-04-03 13:28:58+0000\n" "PO-Revision-Date: 2010-04-06 22:55:04+0000\n"
"Language-Team: Dutch\n" "Language-Team: Dutch\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n" "X-Language-Code: nl\n"
"X-Message-Group: out-statusnet\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/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: 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." 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." 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 #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "Groepen van %s" msgstr "Groepen van %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
#, fuzzy, php-format #: actions/apigrouplist.php:107
msgid "Groups %1$s is a member of on %2$s." #, php-format
msgstr "Groepen waar %s lid van is" 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 #: actions/apigrouplistall.php:90 actions/usergroups.php:62
#, php-format #, php-format
@ -847,7 +849,7 @@ msgstr "Gebruiker niet blokkeren"
msgid "Yes" msgid "Yes"
msgstr "Ja" 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" msgid "Block this user"
msgstr "Deze gebruiker blokkeren" msgstr "Deze gebruiker blokkeren"
@ -947,7 +949,7 @@ msgid "Conversation"
msgstr "Dialoog" msgstr "Dialoog"
#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 #: 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" msgid "Notices"
msgstr "Mededelingen" 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." msgid "User is not a member of group."
msgstr "De gebruiker is geen lid van de groep." 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" msgid "Block user from group"
msgstr "Gebruiker toegang tot de groep blokkeren" msgstr "Gebruiker toegang tot de groep blokkeren"
@ -1752,19 +1754,19 @@ msgstr "Ledenlijst van deze groep"
msgid "Admin" msgid "Admin"
msgstr "Beheerder" msgstr "Beheerder"
#: actions/groupmembers.php:355 lib/blockform.php:69 #: actions/groupmembers.php:373 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "Blokkeren" msgstr "Blokkeren"
#: actions/groupmembers.php:450 #: actions/groupmembers.php:468
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "Deze gebruiker groepsbeheerder maken" msgstr "Deze gebruiker groepsbeheerder maken"
#: actions/groupmembers.php:482 #: actions/groupmembers.php:500
msgid "Make Admin" msgid "Make Admin"
msgstr "Beheerder maken" msgstr "Beheerder maken"
#: actions/groupmembers.php:482 #: actions/groupmembers.php:500
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "Deze gebruiker beheerder maken" msgstr "Deze gebruiker beheerder maken"
@ -1779,7 +1781,7 @@ msgstr "%s tijdlijn"
msgid "Updates from members of %1$s on %2$s!" msgid "Updates from members of %1$s on %2$s!"
msgstr "Updates voor leden van %1$s op %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 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
msgid "Groups" msgid "Groups"
msgstr "Groepen" msgstr "Groepen"
@ -2715,12 +2717,12 @@ msgstr ""
msgid "People search" msgid "People search"
msgstr "Gebruikers zoeken" msgstr "Gebruikers zoeken"
#: actions/peopletag.php:70 #: actions/peopletag.php:68
#, php-format #, php-format
msgid "Not a valid people tag: %s" msgid "Not a valid people tag: %s"
msgstr "Geen geldig gebruikerslabel: %s" msgstr "Geen geldig gebruikerslabel: %s"
#: actions/peopletag.php:144 #: actions/peopletag.php:142
#, php-format #, php-format
msgid "Users self-tagged with %1$s - page %2$d" msgid "Users self-tagged with %1$s - page %2$d"
msgstr "Gebruikers die zichzelf met %1$s hebben gelabeld - pagina %2$d" msgstr "Gebruikers die zichzelf met %1$s hebben gelabeld - pagina %2$d"
@ -3452,8 +3454,8 @@ msgstr "Organisatie"
msgid "Description" msgid "Description"
msgstr "Beschrijving" msgstr "Beschrijving"
#: actions/showapplication.php:192 actions/showgroup.php:439 #: actions/showapplication.php:192 actions/showgroup.php:444
#: lib/profileaction.php:182 #: lib/profileaction.php:187
msgid "Statistics" msgid "Statistics"
msgstr "Statistieken" msgstr "Statistieken"
@ -3617,25 +3619,25 @@ msgstr "Mededelingenfeed voor groep %s (Atom)"
msgid "FOAF for %s group" msgid "FOAF for %s group"
msgstr "Vriend van een vriend voor de groep %s" 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" msgid "Members"
msgstr "Leden" msgstr "Leden"
#: actions/showgroup.php:396 lib/profileaction.php:117 #: actions/showgroup.php:398 lib/profileaction.php:117
#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)" msgid "(None)"
msgstr "(geen)" msgstr "(geen)"
#: actions/showgroup.php:402 #: actions/showgroup.php:404
msgid "All members" msgid "All members"
msgstr "Alle leden" msgstr "Alle leden"
#: actions/showgroup.php:442 #: actions/showgroup.php:447
msgid "Created" msgid "Created"
msgstr "Aangemaakt" msgstr "Aangemaakt"
#: actions/showgroup.php:458 #: actions/showgroup.php:463
#, php-format #, php-format
msgid "" msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "**%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%%" "lid te worden van deze groep en nog veel meer! [Meer lezen...](%%%%doc.help%%"
"%%)" "%%)"
#: actions/showgroup.php:464 #: actions/showgroup.php:469
#, php-format #, php-format
msgid "" msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "**%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 " "[StatusNet](http://status.net/). De leden wisselen korte mededelingen uit "
"over hun ervaringen en interesses. " "over hun ervaringen en interesses. "
#: actions/showgroup.php:492 #: actions/showgroup.php:497
msgid "Admins" msgid "Admins"
msgstr "Beheerders" msgstr "Beheerders"
@ -6295,7 +6297,7 @@ msgstr "Labels in de mededelingen van %s"
msgid "Unknown" msgid "Unknown"
msgstr "Onbekend" 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" msgid "Subscriptions"
msgstr "Abonnementen" msgstr "Abonnementen"
@ -6303,28 +6305,28 @@ msgstr "Abonnementen"
msgid "All subscriptions" msgid "All subscriptions"
msgstr "Alle abonnementen" 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" msgid "Subscribers"
msgstr "Abonnees" msgstr "Abonnees"
#: lib/profileaction.php:159 #: lib/profileaction.php:161
msgid "All subscribers" msgid "All subscribers"
msgstr "Alle abonnees" msgstr "Alle abonnees"
#: lib/profileaction.php:186 #: lib/profileaction.php:191
msgid "User ID" msgid "User ID"
msgstr "Gebruikers-ID" msgstr "Gebruikers-ID"
#: lib/profileaction.php:191 #: lib/profileaction.php:196
msgid "Member since" msgid "Member since"
msgstr "Lid sinds" msgstr "Lid sinds"
#. TRANS: Average count of posts made per day since account registration #. TRANS: Average count of posts made per day since account registration
#: lib/profileaction.php:230 #: lib/profileaction.php:235
msgid "Daily average" msgid "Daily average"
msgstr "Dagelijks gemiddelde" msgstr "Dagelijks gemiddelde"
#: lib/profileaction.php:259 #: lib/profileaction.php:264
msgid "All groups" msgid "All groups"
msgstr "Alle groepen" msgstr "Alle groepen"

View File

@ -7,12 +7,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:28:55+0000\n" "PO-Revision-Date: 2010-04-05 18:55:53+0000\n"
"Language-Team: Norwegian Nynorsk\n" "Language-Team: Norwegian Nynorsk\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nn\n" "X-Language-Code: nn\n"
"X-Message-Group: out-statusnet\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/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: 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." msgid "Could not remove user %1$s from group %2$s."
msgstr "Kunne ikkje fjerne %s fra %s gruppa " 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 #, fuzzy, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "%s grupper" 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 #, 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" msgstr "Grupper %s er medlem av"
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62

View File

@ -2,6 +2,7 @@
# #
# Author@translatewiki.net: McDutchie # Author@translatewiki.net: McDutchie
# Author@translatewiki.net: Raven # Author@translatewiki.net: Raven
# Author@translatewiki.net: Sp5uhe
# -- # --
# Paweł Wilk <siefca@gnu.org>, 2008. # Paweł Wilk <siefca@gnu.org>, 2008.
# Piotr Drąg <piotrdrag@gmail.com>, 2009. # Piotr Drąg <piotrdrag@gmail.com>, 2009.
@ -10,8 +11,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-06 22:53+0000\n"
"PO-Revision-Date: 2010-04-03 13:29:01+0000\n" "PO-Revision-Date: 2010-04-06 22:55:08+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Polish <pl@li.org>\n" "Language-Team: Polish <pl@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -19,7 +20,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n" "|| 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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pl\n" "X-Language-Code: pl\n"
"X-Message-Group: out-statusnet\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/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: 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." msgid "Could not remove user %1$s from group %2$s."
msgstr "Nie można usunąć użytkownika %1$s z grupy %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 #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "Grupy użytkownika %s" msgstr "Grupy użytkownika %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
#, fuzzy, php-format #: actions/apigrouplist.php:107
msgid "Groups %1$s is a member of on %2$s." #, php-format
msgstr "Grupy %s są członkiem" 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 #: actions/apigrouplistall.php:90 actions/usergroups.php:62
#, php-format #, php-format
@ -833,7 +836,7 @@ msgstr "Nie blokuj tego użytkownika"
msgid "Yes" msgid "Yes"
msgstr "Tak" 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" msgid "Block this user"
msgstr "Zablokuj tego użytkownika" msgstr "Zablokuj tego użytkownika"
@ -933,7 +936,7 @@ msgid "Conversation"
msgstr "Rozmowa" msgstr "Rozmowa"
#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 #: 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" msgid "Notices"
msgstr "Wpisy" msgstr "Wpisy"
@ -1624,7 +1627,7 @@ msgstr "Użytkownik został już zablokował w grupie."
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "Użytkownik nie jest członkiem grupy." 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" msgid "Block user from group"
msgstr "Zablokuj użytkownika w grupie" msgstr "Zablokuj użytkownika w grupie"
@ -1722,19 +1725,19 @@ msgstr "Lista użytkowników znajdujących się w tej grupie."
msgid "Admin" msgid "Admin"
msgstr "Administrator" msgstr "Administrator"
#: actions/groupmembers.php:355 lib/blockform.php:69 #: actions/groupmembers.php:373 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "Zablokuj" msgstr "Zablokuj"
#: actions/groupmembers.php:450 #: actions/groupmembers.php:468
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "Uczyń użytkownika administratorem grupy" msgstr "Uczyń użytkownika administratorem grupy"
#: actions/groupmembers.php:482 #: actions/groupmembers.php:500
msgid "Make Admin" msgid "Make Admin"
msgstr "Uczyń administratorem" msgstr "Uczyń administratorem"
#: actions/groupmembers.php:482 #: actions/groupmembers.php:500
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "Uczyń tego użytkownika administratorem" 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!" msgid "Updates from members of %1$s on %2$s!"
msgstr "Aktualizacje od członków %1$s na %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 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
msgid "Groups" msgid "Groups"
msgstr "Grupy" msgstr "Grupy"
@ -2677,12 +2680,12 @@ msgstr ""
msgid "People search" msgid "People search"
msgstr "Wyszukiwanie osób" msgstr "Wyszukiwanie osób"
#: actions/peopletag.php:70 #: actions/peopletag.php:68
#, php-format #, php-format
msgid "Not a valid people tag: %s" msgid "Not a valid people tag: %s"
msgstr "Nieprawidłowy znacznik osób: %s" msgstr "Nieprawidłowy znacznik osób: %s"
#: actions/peopletag.php:144 #: actions/peopletag.php:142
#, php-format #, php-format
msgid "Users self-tagged with %1$s - page %2$d" msgid "Users self-tagged with %1$s - page %2$d"
msgstr "Użytkownicy używający znacznika %1$s - strona %2$d" msgstr "Użytkownicy używający znacznika %1$s - strona %2$d"
@ -3404,8 +3407,8 @@ msgstr "Organizacja"
msgid "Description" msgid "Description"
msgstr "Opis" msgstr "Opis"
#: actions/showapplication.php:192 actions/showgroup.php:439 #: actions/showapplication.php:192 actions/showgroup.php:444
#: lib/profileaction.php:182 #: lib/profileaction.php:187
msgid "Statistics" msgid "Statistics"
msgstr "Statystyki" msgstr "Statystyki"
@ -3567,25 +3570,25 @@ msgstr "Kanał wpisów dla grupy %s (Atom)"
msgid "FOAF for %s group" msgid "FOAF for %s group"
msgstr "FOAF dla grupy %s" 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" msgid "Members"
msgstr "Członkowie" msgstr "Członkowie"
#: actions/showgroup.php:396 lib/profileaction.php:117 #: actions/showgroup.php:398 lib/profileaction.php:117
#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)" msgid "(None)"
msgstr "(Brak)" msgstr "(Brak)"
#: actions/showgroup.php:402 #: actions/showgroup.php:404
msgid "All members" msgid "All members"
msgstr "Wszyscy członkowie" msgstr "Wszyscy członkowie"
#: actions/showgroup.php:442 #: actions/showgroup.php:447
msgid "Created" msgid "Created"
msgstr "Utworzono" msgstr "Utworzono"
#: actions/showgroup.php:458 #: actions/showgroup.php:463
#, php-format #, php-format
msgid "" msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "**%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. " "action.register%%%%), aby stać się częścią tej grupy i wiele więcej. "
"([Przeczytaj więcej](%%%%doc.help%%%%))" "([Przeczytaj więcej](%%%%doc.help%%%%))"
#: actions/showgroup.php:464 #: actions/showgroup.php:469
#, php-format #, php-format
msgid "" msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "**%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ę " "narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się "
"krótkimi wiadomościami o swoim życiu i zainteresowaniach. " "krótkimi wiadomościami o swoim życiu i zainteresowaniach. "
#: actions/showgroup.php:492 #: actions/showgroup.php:497
msgid "Admins" msgid "Admins"
msgstr "Administratorzy" msgstr "Administratorzy"
@ -6219,7 +6222,7 @@ msgstr "Znaczniki we wpisach użytkownika %s"
msgid "Unknown" msgid "Unknown"
msgstr "Nieznane" 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" msgid "Subscriptions"
msgstr "Subskrypcje" msgstr "Subskrypcje"
@ -6227,28 +6230,28 @@ msgstr "Subskrypcje"
msgid "All subscriptions" msgid "All subscriptions"
msgstr "Wszystkie subskrypcje" 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" msgid "Subscribers"
msgstr "Subskrybenci" msgstr "Subskrybenci"
#: lib/profileaction.php:159 #: lib/profileaction.php:161
msgid "All subscribers" msgid "All subscribers"
msgstr "Wszyscy subskrybenci" msgstr "Wszyscy subskrybenci"
#: lib/profileaction.php:186 #: lib/profileaction.php:191
msgid "User ID" msgid "User ID"
msgstr "Identyfikator użytkownika" msgstr "Identyfikator użytkownika"
#: lib/profileaction.php:191 #: lib/profileaction.php:196
msgid "Member since" msgid "Member since"
msgstr "Członek od" msgstr "Członek od"
#. TRANS: Average count of posts made per day since account registration #. TRANS: Average count of posts made per day since account registration
#: lib/profileaction.php:230 #: lib/profileaction.php:235
msgid "Daily average" msgid "Daily average"
msgstr "Dziennie średnio" msgstr "Dziennie średnio"
#: lib/profileaction.php:259 #: lib/profileaction.php:264
msgid "All groups" msgid "All groups"
msgstr "Wszystkie grupy" msgstr "Wszystkie grupy"

View File

@ -9,12 +9,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:29:05+0000\n" "PO-Revision-Date: 2010-04-05 18:56:03+0000\n"
"Language-Team: Portuguese\n" "Language-Team: Portuguese\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt\n" "X-Language-Code: pt\n"
"X-Message-Group: out-statusnet\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/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: 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." msgid "Could not remove user %1$s from group %2$s."
msgstr "Não foi possível remover %1$s do grupo %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 #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "Grupos de %s" 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 #, 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" msgstr "Grupos de que %s é membro"
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62

View File

@ -12,12 +12,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:29:08+0000\n" "PO-Revision-Date: 2010-04-05 18:56:06+0000\n"
"Language-Team: Brazilian Portuguese\n" "Language-Team: Brazilian Portuguese\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt-br\n" "X-Language-Code: pt-br\n"
"X-Message-Group: out-statusnet\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/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: 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." 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." 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 #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "Grupos de %s" 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 #, 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" msgstr "Grupos dos quais %s é membro"
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62

View File

@ -12,12 +12,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-06 22:53+0000\n"
"PO-Revision-Date: 2010-04-03 13:29:11+0000\n" "PO-Revision-Date: 2010-04-06 22:55:17+0000\n"
"Language-Team: Russian\n" "Language-Team: Russian\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ru\n" "X-Language-Code: ru\n"
"X-Message-Group: out-statusnet\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/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
@ -484,15 +484,17 @@ msgstr "Вы не являетесь членом этой группы."
msgid "Could not remove user %1$s from group %2$s." msgid "Could not remove user %1$s from group %2$s."
msgstr "Не удаётся удалить пользователя %1$s из группы %2$s." msgstr "Не удаётся удалить пользователя %1$s из группы %2$s."
#: actions/apigrouplist.php:96 #. TRANS: %s is a user name
#: actions/apigrouplist.php:97
#, php-format #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "Группы %s" 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
#, fuzzy, php-format #: actions/apigrouplist.php:107
msgid "Groups %1$s is a member of on %2$s." #, php-format
msgstr "Группы, в которых состоит %s" msgid "%1$s groups %2$s is a member of."
msgstr "Группы %1$s, в которых состоит %2$s."
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62
#, php-format #, php-format
@ -837,7 +839,7 @@ msgstr "Не блокировать этого пользователя"
msgid "Yes" msgid "Yes"
msgstr "Да" 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" msgid "Block this user"
msgstr "Заблокировать пользователя." msgstr "Заблокировать пользователя."
@ -937,7 +939,7 @@ msgid "Conversation"
msgstr "Дискуссия" msgstr "Дискуссия"
#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 #: 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" msgid "Notices"
msgstr "Записи" msgstr "Записи"
@ -1640,7 +1642,7 @@ msgstr "Пользователь уже заблокирован из групп
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "Пользователь не является членом этой группы." msgstr "Пользователь не является членом этой группы."
#: actions/groupblock.php:136 actions/groupmembers.php:323 #: actions/groupblock.php:136 actions/groupmembers.php:341
msgid "Block user from group" msgid "Block user from group"
msgstr "Заблокировать пользователя из группы." msgstr "Заблокировать пользователя из группы."
@ -1742,19 +1744,19 @@ msgstr "Список пользователей, являющихся члена
msgid "Admin" msgid "Admin"
msgstr "Настройки" msgstr "Настройки"
#: actions/groupmembers.php:355 lib/blockform.php:69 #: actions/groupmembers.php:373 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "Блокировать" msgstr "Блокировать"
#: actions/groupmembers.php:450 #: actions/groupmembers.php:468
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "Сделать пользователя администратором группы" msgstr "Сделать пользователя администратором группы"
#: actions/groupmembers.php:482 #: actions/groupmembers.php:500
msgid "Make Admin" msgid "Make Admin"
msgstr "Сделать администратором" msgstr "Сделать администратором"
#: actions/groupmembers.php:482 #: actions/groupmembers.php:500
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "Сделать этого пользователя администратором" msgstr "Сделать этого пользователя администратором"
@ -1769,7 +1771,7 @@ msgstr "Лента %s"
msgid "Updates from members of %1$s on %2$s!" msgid "Updates from members of %1$s on %2$s!"
msgstr "Обновления участников %1$s на %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 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
msgid "Groups" msgid "Groups"
msgstr "Группы" msgstr "Группы"
@ -2696,12 +2698,12 @@ msgstr ""
msgid "People search" msgid "People search"
msgstr "Поиск людей" msgstr "Поиск людей"
#: actions/peopletag.php:70 #: actions/peopletag.php:68
#, php-format #, php-format
msgid "Not a valid people tag: %s" msgid "Not a valid people tag: %s"
msgstr "Неверный тег человека: %s" msgstr "Неверный тег человека: %s"
#: actions/peopletag.php:144 #: actions/peopletag.php:142
#, php-format #, php-format
msgid "Users self-tagged with %1$s - page %2$d" msgid "Users self-tagged with %1$s - page %2$d"
msgstr "Пользователи, установившие себе тег %1$s — страница %2$d" msgstr "Пользователи, установившие себе тег %1$s — страница %2$d"
@ -3422,8 +3424,8 @@ msgstr "Организация"
msgid "Description" msgid "Description"
msgstr "Описание" msgstr "Описание"
#: actions/showapplication.php:192 actions/showgroup.php:439 #: actions/showapplication.php:192 actions/showgroup.php:444
#: lib/profileaction.php:182 #: lib/profileaction.php:187
msgid "Statistics" msgid "Statistics"
msgstr "Статистика" msgstr "Статистика"
@ -3585,25 +3587,25 @@ msgstr "Лента записей группы %s (Atom)"
msgid "FOAF for %s group" msgid "FOAF for %s group"
msgstr "FOAF для группы %s" 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" msgid "Members"
msgstr "Участники" msgstr "Участники"
#: actions/showgroup.php:396 lib/profileaction.php:117 #: actions/showgroup.php:398 lib/profileaction.php:117
#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)" msgid "(None)"
msgstr "(пока ничего нет)" msgstr "(пока ничего нет)"
#: actions/showgroup.php:402 #: actions/showgroup.php:404
msgid "All members" msgid "All members"
msgstr "Все участники" msgstr "Все участники"
#: actions/showgroup.php:442 #: actions/showgroup.php:447
msgid "Created" msgid "Created"
msgstr "Создано" msgstr "Создано"
#: actions/showgroup.php:458 #: actions/showgroup.php:463
#, php-format #, php-format
msgid "" msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@ -3619,7 +3621,7 @@ msgstr ""
"action.register%%%%), чтобы стать участником группы и получить множество " "action.register%%%%), чтобы стать участником группы и получить множество "
"других возможностей! ([Читать далее](%%%%doc.help%%%%))" "других возможностей! ([Читать далее](%%%%doc.help%%%%))"
#: actions/showgroup.php:464 #: actions/showgroup.php:469
#, php-format #, php-format
msgid "" msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@ -3632,7 +3634,7 @@ msgstr ""
"обеспечении [StatusNet](http://status.net/). Участники обмениваются " "обеспечении [StatusNet](http://status.net/). Участники обмениваются "
"короткими сообщениями о своей жизни и интересах. " "короткими сообщениями о своей жизни и интересах. "
#: actions/showgroup.php:492 #: actions/showgroup.php:497
msgid "Admins" msgid "Admins"
msgstr "Администраторы" msgstr "Администраторы"
@ -6234,7 +6236,7 @@ msgstr "Теги записей пользователя %s"
msgid "Unknown" msgid "Unknown"
msgstr "Неизвестно" 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" msgid "Subscriptions"
msgstr "Подписки" msgstr "Подписки"
@ -6242,28 +6244,28 @@ msgstr "Подписки"
msgid "All subscriptions" msgid "All subscriptions"
msgstr "Все подписки." 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" msgid "Subscribers"
msgstr "Подписчики" msgstr "Подписчики"
#: lib/profileaction.php:159 #: lib/profileaction.php:161
msgid "All subscribers" msgid "All subscribers"
msgstr "Все подписчики" msgstr "Все подписчики"
#: lib/profileaction.php:186 #: lib/profileaction.php:191
msgid "User ID" msgid "User ID"
msgstr "ID пользователя" msgstr "ID пользователя"
#: lib/profileaction.php:191 #: lib/profileaction.php:196
msgid "Member since" msgid "Member since"
msgstr "Регистрация" msgstr "Регистрация"
#. TRANS: Average count of posts made per day since account registration #. TRANS: Average count of posts made per day since account registration
#: lib/profileaction.php:230 #: lib/profileaction.php:235
msgid "Daily average" msgid "Daily average"
msgstr "Среднесуточная" msgstr "Среднесуточная"
#: lib/profileaction.php:259 #: lib/profileaction.php:264
msgid "All groups" msgid "All groups"
msgstr "Все группы" msgstr "Все группы"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -187,7 +187,7 @@ msgstr ""
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
@ -460,14 +460,16 @@ msgstr ""
msgid "Could not remove user %1$s from group %2$s." msgid "Could not remove user %1$s from group %2$s."
msgstr "" msgstr ""
#: actions/apigrouplist.php:96 #. TRANS: %s is a user name
#: actions/apigrouplist.php:97
#, php-format #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "" 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 #, php-format
msgid "Groups %1$s is a member of on %2$s." msgid "%1$s groups %2$s is a member of."
msgstr "" msgstr ""
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62
@ -804,7 +806,7 @@ msgstr ""
msgid "Yes" msgid "Yes"
msgstr "" 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" msgid "Block this user"
msgstr "" msgstr ""
@ -904,7 +906,7 @@ msgid "Conversation"
msgstr "" msgstr ""
#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 #: 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" msgid "Notices"
msgstr "" msgstr ""
@ -1577,7 +1579,7 @@ msgstr ""
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "" msgstr ""
#: actions/groupblock.php:136 actions/groupmembers.php:323 #: actions/groupblock.php:136 actions/groupmembers.php:341
msgid "Block user from group" msgid "Block user from group"
msgstr "" msgstr ""
@ -1672,19 +1674,19 @@ msgstr ""
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: actions/groupmembers.php:355 lib/blockform.php:69 #: actions/groupmembers.php:373 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "" msgstr ""
#: actions/groupmembers.php:450 #: actions/groupmembers.php:468
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "" msgstr ""
#: actions/groupmembers.php:482 #: actions/groupmembers.php:500
msgid "Make Admin" msgid "Make Admin"
msgstr "" msgstr ""
#: actions/groupmembers.php:482 #: actions/groupmembers.php:500
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "" msgstr ""
@ -1699,7 +1701,7 @@ msgstr ""
msgid "Updates from members of %1$s on %2$s!" msgid "Updates from members of %1$s on %2$s!"
msgstr "" 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 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
msgid "Groups" msgid "Groups"
msgstr "" msgstr ""
@ -2553,12 +2555,12 @@ msgstr ""
msgid "People search" msgid "People search"
msgstr "" msgstr ""
#: actions/peopletag.php:70 #: actions/peopletag.php:68
#, php-format #, php-format
msgid "Not a valid people tag: %s" msgid "Not a valid people tag: %s"
msgstr "" msgstr ""
#: actions/peopletag.php:144 #: actions/peopletag.php:142
#, php-format #, php-format
msgid "Users self-tagged with %1$s - page %2$d" msgid "Users self-tagged with %1$s - page %2$d"
msgstr "" msgstr ""
@ -3224,8 +3226,8 @@ msgstr ""
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: actions/showapplication.php:192 actions/showgroup.php:439 #: actions/showapplication.php:192 actions/showgroup.php:444
#: lib/profileaction.php:182 #: lib/profileaction.php:187
msgid "Statistics" msgid "Statistics"
msgstr "" msgstr ""
@ -3377,25 +3379,25 @@ msgstr ""
msgid "FOAF for %s group" msgid "FOAF for %s group"
msgstr "" 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" msgid "Members"
msgstr "" msgstr ""
#: actions/showgroup.php:396 lib/profileaction.php:117 #: actions/showgroup.php:398 lib/profileaction.php:117
#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)" msgid "(None)"
msgstr "" msgstr ""
#: actions/showgroup.php:402 #: actions/showgroup.php:404
msgid "All members" msgid "All members"
msgstr "" msgstr ""
#: actions/showgroup.php:442 #: actions/showgroup.php:447
msgid "Created" msgid "Created"
msgstr "" msgstr ""
#: actions/showgroup.php:458 #: actions/showgroup.php:463
#, php-format #, php-format
msgid "" msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "**%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%%%%))" "of this group and many more! ([Read more](%%%%doc.help%%%%))"
msgstr "" msgstr ""
#: actions/showgroup.php:464 #: actions/showgroup.php:469
#, php-format #, php-format
msgid "" msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@ -3414,7 +3416,7 @@ msgid ""
"their life and interests. " "their life and interests. "
msgstr "" msgstr ""
#: actions/showgroup.php:492 #: actions/showgroup.php:497
msgid "Admins" msgid "Admins"
msgstr "" msgstr ""
@ -5786,7 +5788,7 @@ msgstr ""
msgid "Unknown" msgid "Unknown"
msgstr "" 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" msgid "Subscriptions"
msgstr "" msgstr ""
@ -5794,28 +5796,28 @@ msgstr ""
msgid "All subscriptions" msgid "All subscriptions"
msgstr "" 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" msgid "Subscribers"
msgstr "" msgstr ""
#: lib/profileaction.php:159 #: lib/profileaction.php:161
msgid "All subscribers" msgid "All subscribers"
msgstr "" msgstr ""
#: lib/profileaction.php:186 #: lib/profileaction.php:191
msgid "User ID" msgid "User ID"
msgstr "" msgstr ""
#: lib/profileaction.php:191 #: lib/profileaction.php:196
msgid "Member since" msgid "Member since"
msgstr "" msgstr ""
#. TRANS: Average count of posts made per day since account registration #. TRANS: Average count of posts made per day since account registration
#: lib/profileaction.php:230 #: lib/profileaction.php:235
msgid "Daily average" msgid "Daily average"
msgstr "" msgstr ""
#: lib/profileaction.php:259 #: lib/profileaction.php:264
msgid "All groups" msgid "All groups"
msgstr "" msgstr ""

View File

@ -9,12 +9,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-06 22:53+0000\n"
"PO-Revision-Date: 2010-04-03 13:29:14+0000\n" "PO-Revision-Date: 2010-04-06 22:55:20+0000\n"
"Language-Team: Swedish\n" "Language-Team: Swedish\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: sv\n" "X-Language-Code: sv\n"
"X-Message-Group: out-statusnet\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/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: 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." 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." 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 #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "%ss grupper" msgstr "%ss 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
#, fuzzy, php-format #: actions/apigrouplist.php:107
msgid "Groups %1$s is a member of on %2$s." #, php-format
msgstr "Grupper %s är en medlem i" 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 #: actions/apigrouplistall.php:90 actions/usergroups.php:62
#, php-format #, php-format
@ -825,7 +827,7 @@ msgstr "Blockera inte denna användare"
msgid "Yes" msgid "Yes"
msgstr "Ja" 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" msgid "Block this user"
msgstr "Blockera denna användare" msgstr "Blockera denna användare"
@ -926,7 +928,7 @@ msgid "Conversation"
msgstr "Konversationer" msgstr "Konversationer"
#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 #: 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" msgid "Notices"
msgstr "Notiser" msgstr "Notiser"
@ -1620,7 +1622,7 @@ msgstr "Användaren är redan blockerad från grupp."
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "Användare är inte en gruppmedlem." 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" msgid "Block user from group"
msgstr "Blockera användare från grupp" msgstr "Blockera användare från grupp"
@ -1721,19 +1723,19 @@ msgstr "En lista av användarna i denna grupp."
msgid "Admin" msgid "Admin"
msgstr "Administratör" msgstr "Administratör"
#: actions/groupmembers.php:355 lib/blockform.php:69 #: actions/groupmembers.php:373 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "Blockera" msgstr "Blockera"
#: actions/groupmembers.php:450 #: actions/groupmembers.php:468
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "Gör användare till en administratör för gruppen" msgstr "Gör användare till en administratör för gruppen"
#: actions/groupmembers.php:482 #: actions/groupmembers.php:500
msgid "Make Admin" msgid "Make Admin"
msgstr "Gör till administratör" msgstr "Gör till administratör"
#: actions/groupmembers.php:482 #: actions/groupmembers.php:500
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "Gör denna användare till administratör" 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!" msgid "Updates from members of %1$s on %2$s!"
msgstr "Uppdateringar från medlemmar i %1$s på %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 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
msgid "Groups" msgid "Groups"
msgstr "Grupper" msgstr "Grupper"
@ -2675,12 +2677,12 @@ msgstr ""
msgid "People search" msgid "People search"
msgstr "Personsökning" msgstr "Personsökning"
#: actions/peopletag.php:70 #: actions/peopletag.php:68
#, php-format #, php-format
msgid "Not a valid people tag: %s" msgid "Not a valid people tag: %s"
msgstr "Inte en giltig persontagg: %s" msgstr "Inte en giltig persontagg: %s"
#: actions/peopletag.php:144 #: actions/peopletag.php:142
#, php-format #, php-format
msgid "Users self-tagged with %1$s - page %2$d" msgid "Users self-tagged with %1$s - page %2$d"
msgstr "Användare som taggat sig själv med %1$s - sida %2$d" msgstr "Användare som taggat sig själv med %1$s - sida %2$d"
@ -3406,8 +3408,8 @@ msgstr "Organisation"
msgid "Description" msgid "Description"
msgstr "Beskrivning" msgstr "Beskrivning"
#: actions/showapplication.php:192 actions/showgroup.php:439 #: actions/showapplication.php:192 actions/showgroup.php:444
#: lib/profileaction.php:182 #: lib/profileaction.php:187
msgid "Statistics" msgid "Statistics"
msgstr "Statistik" msgstr "Statistik"
@ -3570,25 +3572,25 @@ msgstr "Flöde av notiser för %s grupp (Atom)"
msgid "FOAF for %s group" msgid "FOAF for %s group"
msgstr "FOAF för %s grupp" 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" msgid "Members"
msgstr "Medlemmar" msgstr "Medlemmar"
#: actions/showgroup.php:396 lib/profileaction.php:117 #: actions/showgroup.php:398 lib/profileaction.php:117
#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)" msgid "(None)"
msgstr "(Ingen)" msgstr "(Ingen)"
#: actions/showgroup.php:402 #: actions/showgroup.php:404
msgid "All members" msgid "All members"
msgstr "Alla medlemmar" msgstr "Alla medlemmar"
#: actions/showgroup.php:442 #: actions/showgroup.php:447
msgid "Created" msgid "Created"
msgstr "Skapad" msgstr "Skapad"
#: actions/showgroup.php:458 #: actions/showgroup.php:463
#, php-format #, php-format
msgid "" msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "**%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 " "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%%%%))" "del av denna grupp och många fler! ([Läs mer](%%%%doc.help%%%%))"
#: actions/showgroup.php:464 #: actions/showgroup.php:469
#, php-format #, php-format
msgid "" msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "**%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 " "[StatusNet](http://status.net/). Dess medlemmar delar korta meddelande om "
"sina liv och intressen. " "sina liv och intressen. "
#: actions/showgroup.php:492 #: actions/showgroup.php:497
msgid "Admins" msgid "Admins"
msgstr "Administratörer" msgstr "Administratörer"
@ -6204,7 +6206,7 @@ msgstr "Taggar i %ss notiser"
msgid "Unknown" msgid "Unknown"
msgstr "Okänd" 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" msgid "Subscriptions"
msgstr "Prenumerationer" msgstr "Prenumerationer"
@ -6212,28 +6214,28 @@ msgstr "Prenumerationer"
msgid "All subscriptions" msgid "All subscriptions"
msgstr "Alla prenumerationer" 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" msgid "Subscribers"
msgstr "Prenumeranter" msgstr "Prenumeranter"
#: lib/profileaction.php:159 #: lib/profileaction.php:161
msgid "All subscribers" msgid "All subscribers"
msgstr "Alla prenumeranter" msgstr "Alla prenumeranter"
#: lib/profileaction.php:186 #: lib/profileaction.php:191
msgid "User ID" msgid "User ID"
msgstr "Användar-ID" msgstr "Användar-ID"
#: lib/profileaction.php:191 #: lib/profileaction.php:196
msgid "Member since" msgid "Member since"
msgstr "Medlem sedan" msgstr "Medlem sedan"
#. TRANS: Average count of posts made per day since account registration #. TRANS: Average count of posts made per day since account registration
#: lib/profileaction.php:230 #: lib/profileaction.php:235
msgid "Daily average" msgid "Daily average"
msgstr "Dagligt genomsnitt" msgstr "Dagligt genomsnitt"
#: lib/profileaction.php:259 #: lib/profileaction.php:264
msgid "All groups" msgid "All groups"
msgstr "Alla grupper" msgstr "Alla grupper"

View File

@ -9,12 +9,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-06 22:53+0000\n"
"PO-Revision-Date: 2010-04-03 13:29:19+0000\n" "PO-Revision-Date: 2010-04-06 22:55:23+0000\n"
"Language-Team: Telugu\n" "Language-Team: Telugu\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: te\n" "X-Language-Code: te\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -190,7 +190,7 @@ msgstr ""
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
@ -470,14 +470,16 @@ msgstr "మీరు ఈ గుంపులో సభ్యులు కాద
msgid "Could not remove user %1$s from group %2$s." msgid "Could not remove user %1$s from group %2$s."
msgstr "వాడుకరి %sని %s గుంపు నుండి తొలగించలేకపోయాం." msgstr "వాడుకరి %sని %s గుంపు నుండి తొలగించలేకపోయాం."
#: actions/apigrouplist.php:96 #. TRANS: %s is a user name
#: actions/apigrouplist.php:97
#, php-format #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "%s యొక్క గుంపులు" 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 #, 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 సభ్యులుగా ఉన్న గుంపులు" msgstr "%s సభ్యులుగా ఉన్న గుంపులు"
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62
@ -821,7 +823,7 @@ msgstr "ఈ వాడుకరిని నిరోధించకు"
msgid "Yes" msgid "Yes"
msgstr "అవును" 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" msgid "Block this user"
msgstr "ఈ వాడుకరిని నిరోధించు" msgstr "ఈ వాడుకరిని నిరోధించు"
@ -923,7 +925,7 @@ msgid "Conversation"
msgstr "సంభాషణ" msgstr "సంభాషణ"
#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 #: 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" msgid "Notices"
msgstr "సందేశాలు" msgstr "సందేశాలు"
@ -1605,7 +1607,7 @@ msgstr "వాడుకరిని ఇప్పటికే గుంపున
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "వాడుకరి ఈ గుంపులో సభ్యులు కాదు." msgstr "వాడుకరి ఈ గుంపులో సభ్యులు కాదు."
#: actions/groupblock.php:136 actions/groupmembers.php:323 #: actions/groupblock.php:136 actions/groupmembers.php:341
msgid "Block user from group" msgid "Block user from group"
msgstr "వాడుకరిని గుంపు నుండి నిరోధించు" msgstr "వాడుకరిని గుంపు నుండి నిరోధించు"
@ -1705,19 +1707,19 @@ msgstr "ఈ గుంపులో వాడుకరులు జాబితా
msgid "Admin" msgid "Admin"
msgstr "నిర్వాహకులు" msgstr "నిర్వాహకులు"
#: actions/groupmembers.php:355 lib/blockform.php:69 #: actions/groupmembers.php:373 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "నిరోధించు" msgstr "నిరోధించు"
#: actions/groupmembers.php:450 #: actions/groupmembers.php:468
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "వాడుకరిని గుంపుకి ఒక నిర్వాహకునిగా చేయి" msgstr "వాడుకరిని గుంపుకి ఒక నిర్వాహకునిగా చేయి"
#: actions/groupmembers.php:482 #: actions/groupmembers.php:500
msgid "Make Admin" msgid "Make Admin"
msgstr "నిర్వాహకున్ని చేయి" msgstr "నిర్వాహకున్ని చేయి"
#: actions/groupmembers.php:482 #: actions/groupmembers.php:500
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "ఈ వాడుకరిని నిర్వాహకున్ని చేయి" msgstr "ఈ వాడుకరిని నిర్వాహకున్ని చేయి"
@ -1732,7 +1734,7 @@ msgstr "%s కాలరేఖ"
msgid "Updates from members of %1$s on %2$s!" msgid "Updates from members of %1$s on %2$s!"
msgstr "%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 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
msgid "Groups" msgid "Groups"
msgstr "గుంపులు" msgstr "గుంపులు"
@ -2589,7 +2591,7 @@ msgstr ""
#: actions/pathsadminpanel.php:330 #: actions/pathsadminpanel.php:330
msgid "When to use SSL" msgid "When to use SSL"
msgstr "" msgstr "SSLని ఎప్పుడు ఉపయోగించాలి"
#: actions/pathsadminpanel.php:335 #: actions/pathsadminpanel.php:335
#, fuzzy #, fuzzy
@ -2618,12 +2620,12 @@ msgstr ""
msgid "People search" msgid "People search"
msgstr "వ్యక్తుల అన్వేషణ" msgstr "వ్యక్తుల అన్వేషణ"
#: actions/peopletag.php:70 #: actions/peopletag.php:68
#, fuzzy, php-format #, fuzzy, php-format
msgid "Not a valid people tag: %s" msgid "Not a valid people tag: %s"
msgstr "సరైన ఈమెయిల్ చిరునామా కాదు:" msgstr "సరైన ఈమెయిల్ చిరునామా కాదు:"
#: actions/peopletag.php:144 #: actions/peopletag.php:142
#, fuzzy, php-format #, fuzzy, php-format
msgid "Users self-tagged with %1$s - page %2$d" msgid "Users self-tagged with %1$s - page %2$d"
msgstr "%s యొక్క మైక్రోబ్లాగు" msgstr "%s యొక్క మైక్రోబ్లాగు"
@ -3325,8 +3327,8 @@ msgstr "సంస్ధ"
msgid "Description" msgid "Description"
msgstr "వివరణ" msgstr "వివరణ"
#: actions/showapplication.php:192 actions/showgroup.php:439 #: actions/showapplication.php:192 actions/showgroup.php:444
#: lib/profileaction.php:182 #: lib/profileaction.php:187
msgid "Statistics" msgid "Statistics"
msgstr "గణాంకాలు" msgstr "గణాంకాలు"
@ -3480,25 +3482,25 @@ msgstr "%s యొక్క సందేశముల ఫీడు"
msgid "FOAF for %s group" msgid "FOAF for %s group"
msgstr "%s గుంపు" 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" msgid "Members"
msgstr "సభ్యులు" msgstr "సభ్యులు"
#: actions/showgroup.php:396 lib/profileaction.php:117 #: actions/showgroup.php:398 lib/profileaction.php:117
#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)" msgid "(None)"
msgstr "(ఏమీలేదు)" msgstr "(ఏమీలేదు)"
#: actions/showgroup.php:402 #: actions/showgroup.php:404
msgid "All members" msgid "All members"
msgstr "అందరు సభ్యులూ" msgstr "అందరు సభ్యులూ"
#: actions/showgroup.php:442 #: actions/showgroup.php:447
msgid "Created" msgid "Created"
msgstr "సృష్టితం" msgstr "సృష్టితం"
#: actions/showgroup.php:458 #: actions/showgroup.php:463
#, php-format #, php-format
msgid "" msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "**%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%%%%))" "of this group and many more! ([Read more](%%%%doc.help%%%%))"
msgstr "" msgstr ""
#: actions/showgroup.php:464 #: actions/showgroup.php:469
#, php-format #, php-format
msgid "" msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@ -3517,7 +3519,7 @@ msgid ""
"their life and interests. " "their life and interests. "
msgstr "" msgstr ""
#: actions/showgroup.php:492 #: actions/showgroup.php:497
msgid "Admins" msgid "Admins"
msgstr "నిర్వాహకులు" msgstr "నిర్వాహకులు"
@ -3669,7 +3671,7 @@ msgstr "మీ సైటు యొక్క పేరు, ఇలా \"మీక
#: actions/siteadminpanel.php:229 #: actions/siteadminpanel.php:229
msgid "Brought by" msgid "Brought by"
msgstr "" msgstr "అందిస్తున్నవారు"
#: actions/siteadminpanel.php:230 #: actions/siteadminpanel.php:230
msgid "Text used for credits link in footer of each page" msgid "Text used for credits link in footer of each page"
@ -3677,16 +3679,15 @@ msgstr ""
#: actions/siteadminpanel.php:234 #: actions/siteadminpanel.php:234
msgid "Brought by URL" msgid "Brought by URL"
msgstr "" msgstr "అందిస్తున్నవారి URL"
#: actions/siteadminpanel.php:235 #: actions/siteadminpanel.php:235
msgid "URL used for credits link in footer of each page" msgid "URL used for credits link in footer of each page"
msgstr "" msgstr ""
#: actions/siteadminpanel.php:239 #: actions/siteadminpanel.php:239
#, fuzzy
msgid "Contact email address for your site" msgid "Contact email address for your site"
msgstr "ఈ వాడుకరికై నమోదైన ఈమెయిల్ చిరునామాలు ఏమీ లేవు." msgstr "మీ సైటుకి సంప్రదింపుల ఈమెయిల్ చిరునామా"
#: actions/siteadminpanel.php:245 #: actions/siteadminpanel.php:245
msgid "Local" msgid "Local"
@ -5996,7 +5997,7 @@ msgstr ""
msgid "Unknown" msgid "Unknown"
msgstr "" 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" msgid "Subscriptions"
msgstr "చందాలు" msgstr "చందాలు"
@ -6004,28 +6005,28 @@ msgstr "చందాలు"
msgid "All subscriptions" msgid "All subscriptions"
msgstr "అన్ని చందాలు" 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" msgid "Subscribers"
msgstr "చందాదార్లు" msgstr "చందాదార్లు"
#: lib/profileaction.php:159 #: lib/profileaction.php:161
msgid "All subscribers" msgid "All subscribers"
msgstr "అందరు చందాదార్లు" msgstr "అందరు చందాదార్లు"
#: lib/profileaction.php:186 #: lib/profileaction.php:191
msgid "User ID" msgid "User ID"
msgstr "వాడుకరి ID" msgstr "వాడుకరి ID"
#: lib/profileaction.php:191 #: lib/profileaction.php:196
msgid "Member since" msgid "Member since"
msgstr "సభ్యులైన తేదీ" msgstr "సభ్యులైన తేదీ"
#. TRANS: Average count of posts made per day since account registration #. TRANS: Average count of posts made per day since account registration
#: lib/profileaction.php:230 #: lib/profileaction.php:235
msgid "Daily average" msgid "Daily average"
msgstr "" msgstr ""
#: lib/profileaction.php:259 #: lib/profileaction.php:264
msgid "All groups" msgid "All groups"
msgstr "అన్ని గుంపులు" msgstr "అన్ని గుంపులు"

View File

@ -9,12 +9,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:29:22+0000\n" "PO-Revision-Date: 2010-04-05 18:56:20+0000\n"
"Language-Team: Turkish\n" "Language-Team: Turkish\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tr\n" "X-Language-Code: tr\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -199,7 +199,7 @@ msgstr ""
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: 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." msgid "Could not remove user %1$s from group %2$s."
msgstr "OpenID formu yaratılamadı: %s" msgstr "OpenID formu yaratılamadı: %s"
#: actions/apigrouplist.php:96 #. TRANS: %s is a user name
#: actions/apigrouplist.php:97
#, fuzzy, php-format #, fuzzy, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "Profil" 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 #, 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" msgstr "Bize o profili yollamadınız"
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62

View File

@ -10,12 +10,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-06 22:53+0000\n"
"PO-Revision-Date: 2010-04-03 13:29:26+0000\n" "PO-Revision-Date: 2010-04-06 22:55:29+0000\n"
"Language-Team: Ukrainian\n" "Language-Team: Ukrainian\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n" "X-Language-Code: uk\n"
"X-Message-Group: out-statusnet\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/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
@ -479,15 +479,17 @@ msgstr "Ви не є учасником цієї групи."
msgid "Could not remove user %1$s from group %2$s." msgid "Could not remove user %1$s from group %2$s."
msgstr "Не вдалось видалити користувача %1$s з групи %2$s." msgstr "Не вдалось видалити користувача %1$s з групи %2$s."
#: actions/apigrouplist.php:96 #. TRANS: %s is a user name
#: actions/apigrouplist.php:97
#, php-format #, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "%s групи" 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
#, fuzzy, php-format #: actions/apigrouplist.php:107
msgid "Groups %1$s is a member of on %2$s." #, php-format
msgstr "%s бере участь в цих групах" msgid "%1$s groups %2$s is a member of."
msgstr "%1$s групи, в яких %2$s бере участь."
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62
#, php-format #, php-format
@ -835,7 +837,7 @@ msgstr "Не блокувати цього користувача"
msgid "Yes" msgid "Yes"
msgstr "Так" 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" msgid "Block this user"
msgstr "Блокувати користувача" msgstr "Блокувати користувача"
@ -935,7 +937,7 @@ msgid "Conversation"
msgstr "Розмова" msgstr "Розмова"
#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 #: 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" msgid "Notices"
msgstr "Дописи" msgstr "Дописи"
@ -1624,7 +1626,7 @@ msgstr "Користувача заблоковано в цій групі."
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "Користувач не є учасником групи." msgstr "Користувач не є учасником групи."
#: actions/groupblock.php:136 actions/groupmembers.php:323 #: actions/groupblock.php:136 actions/groupmembers.php:341
msgid "Block user from group" msgid "Block user from group"
msgstr "Блокувати користувача в групі" msgstr "Блокувати користувача в групі"
@ -1726,19 +1728,19 @@ msgstr "Список учасників цієї групи."
msgid "Admin" msgid "Admin"
msgstr "Адмін" msgstr "Адмін"
#: actions/groupmembers.php:355 lib/blockform.php:69 #: actions/groupmembers.php:373 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "Блок" msgstr "Блок"
#: actions/groupmembers.php:450 #: actions/groupmembers.php:468
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "Надати користувачеві права адміністратора" msgstr "Надати користувачеві права адміністратора"
#: actions/groupmembers.php:482 #: actions/groupmembers.php:500
msgid "Make Admin" msgid "Make Admin"
msgstr "Зробити адміном" msgstr "Зробити адміном"
#: actions/groupmembers.php:482 #: actions/groupmembers.php:500
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "Надати цьому користувачеві права адміністратора" msgstr "Надати цьому користувачеві права адміністратора"
@ -1753,7 +1755,7 @@ msgstr "%s стрічка"
msgid "Updates from members of %1$s on %2$s!" msgid "Updates from members of %1$s on %2$s!"
msgstr "Оновлення членів %1$s на %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 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
msgid "Groups" msgid "Groups"
msgstr "Групи" msgstr "Групи"
@ -2686,12 +2688,12 @@ msgstr ""
msgid "People search" msgid "People search"
msgstr "Пошук людей" msgstr "Пошук людей"
#: actions/peopletag.php:70 #: actions/peopletag.php:68
#, php-format #, php-format
msgid "Not a valid people tag: %s" msgid "Not a valid people tag: %s"
msgstr "Це недійсний особистий теґ: %s" msgstr "Це недійсний особистий теґ: %s"
#: actions/peopletag.php:144 #: actions/peopletag.php:142
#, php-format #, php-format
msgid "Users self-tagged with %1$s - page %2$d" msgid "Users self-tagged with %1$s - page %2$d"
msgstr "Користувачі з особистим теґом %1$s — сторінка %2$d" msgstr "Користувачі з особистим теґом %1$s — сторінка %2$d"
@ -3413,8 +3415,8 @@ msgstr "Організація"
msgid "Description" msgid "Description"
msgstr "Опис" msgstr "Опис"
#: actions/showapplication.php:192 actions/showgroup.php:439 #: actions/showapplication.php:192 actions/showgroup.php:444
#: lib/profileaction.php:182 #: lib/profileaction.php:187
msgid "Statistics" msgid "Statistics"
msgstr "Статистика" msgstr "Статистика"
@ -3576,25 +3578,25 @@ msgstr "Стрічка дописів групи %s (Atom)"
msgid "FOAF for %s group" msgid "FOAF for %s group"
msgstr "FOAF для групи %s" 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" msgid "Members"
msgstr "Учасники" msgstr "Учасники"
#: actions/showgroup.php:396 lib/profileaction.php:117 #: actions/showgroup.php:398 lib/profileaction.php:117
#: lib/profileaction.php:150 lib/profileaction.php:250 lib/section.php:95 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)" msgid "(None)"
msgstr "(Пусто)" msgstr "(Пусто)"
#: actions/showgroup.php:402 #: actions/showgroup.php:404
msgid "All members" msgid "All members"
msgstr "Всі учасники" msgstr "Всі учасники"
#: actions/showgroup.php:442 #: actions/showgroup.php:447
msgid "Created" msgid "Created"
msgstr "Створено" msgstr "Створено"
#: actions/showgroup.php:458 #: actions/showgroup.php:463
#, php-format #, php-format
msgid "" msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@ -3609,7 +3611,7 @@ msgstr ""
"короткі дописи про своє життя та інтереси. [Приєднуйтесь](%%action.register%" "короткі дописи про своє життя та інтереси. [Приєднуйтесь](%%action.register%"
"%) зараз і долучіться до спілкування! ([Дізнатися більше](%%doc.help%%))" "%) зараз і долучіться до спілкування! ([Дізнатися більше](%%doc.help%%))"
#: actions/showgroup.php:464 #: actions/showgroup.php:469
#, php-format #, php-format
msgid "" msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@ -3622,7 +3624,7 @@ msgstr ""
"забезпеченні [StatusNet](http://status.net/). Члени цієї групи роблять " "забезпеченні [StatusNet](http://status.net/). Члени цієї групи роблять "
"короткі дописи про своє життя та інтереси. " "короткі дописи про своє життя та інтереси. "
#: actions/showgroup.php:492 #: actions/showgroup.php:497
msgid "Admins" msgid "Admins"
msgstr "Адміни" msgstr "Адміни"
@ -6213,7 +6215,7 @@ msgstr "Теґи у дописах %s"
msgid "Unknown" msgid "Unknown"
msgstr "Невідомо" 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" msgid "Subscriptions"
msgstr "Підписки" msgstr "Підписки"
@ -6221,28 +6223,28 @@ msgstr "Підписки"
msgid "All subscriptions" msgid "All subscriptions"
msgstr "Всі підписки" 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" msgid "Subscribers"
msgstr "Підписчики" msgstr "Підписчики"
#: lib/profileaction.php:159 #: lib/profileaction.php:161
msgid "All subscribers" msgid "All subscribers"
msgstr "Всі підписчики" msgstr "Всі підписчики"
#: lib/profileaction.php:186 #: lib/profileaction.php:191
msgid "User ID" msgid "User ID"
msgstr "ІД" msgstr "ІД"
#: lib/profileaction.php:191 #: lib/profileaction.php:196
msgid "Member since" msgid "Member since"
msgstr "З нами від" msgstr "З нами від"
#. TRANS: Average count of posts made per day since account registration #. TRANS: Average count of posts made per day since account registration
#: lib/profileaction.php:230 #: lib/profileaction.php:235
msgid "Daily average" msgid "Daily average"
msgstr "Середньодобове" msgstr "Середньодобове"
#: lib/profileaction.php:259 #: lib/profileaction.php:264
msgid "All groups" msgid "All groups"
msgstr "Всі групи" msgstr "Всі групи"

View File

@ -7,12 +7,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:29:29+0000\n" "PO-Revision-Date: 2010-04-05 18:56:28+0000\n"
"Language-Team: Vietnamese\n" "Language-Team: Vietnamese\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: vi\n" "X-Language-Code: vi\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -198,7 +198,7 @@ msgstr ""
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: 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." 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." 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 #, fuzzy, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "%s và nhóm" 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 #, 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" msgstr "Bạn chưa cập nhật thông tin riêng"
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62

View File

@ -10,12 +10,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:29:32+0000\n" "PO-Revision-Date: 2010-04-05 18:56:31+0000\n"
"Language-Team: Simplified Chinese\n" "Language-Team: Simplified Chinese\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: zh-hans\n" "X-Language-Code: zh-hans\n"
"X-Message-Group: out-statusnet\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/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
@ -488,14 +488,16 @@ msgstr "您未告知此个人信息"
msgid "Could not remove user %1$s from group %2$s." msgid "Could not remove user %1$s from group %2$s."
msgstr "无法订阅用户:未找到。" msgstr "无法订阅用户:未找到。"
#: actions/apigrouplist.php:96 #. TRANS: %s is a user name
#: actions/apigrouplist.php:97
#, fuzzy, php-format #, fuzzy, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "%s 群组" 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 #, 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 组是成员组成了" msgstr "%s 组是成员组成了"
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62

View File

@ -7,12 +7,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-03 13:27+0000\n" "POT-Creation-Date: 2010-04-05 18:54+0000\n"
"PO-Revision-Date: 2010-04-03 13:29:38+0000\n" "PO-Revision-Date: 2010-04-05 18:56:34+0000\n"
"Language-Team: Traditional Chinese\n" "Language-Team: Traditional Chinese\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: zh-hant\n" "X-Language-Code: zh-hant\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -195,7 +195,7 @@ msgstr ""
#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138
#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 #: 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/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apigroupshow.php:115 actions/apihelptest.php:88 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: 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." msgid "Could not remove user %1$s from group %2$s."
msgstr "無法從 %s 建立OpenID" msgstr "無法從 %s 建立OpenID"
#: actions/apigrouplist.php:96 #. TRANS: %s is a user name
#: actions/apigrouplist.php:97
#, fuzzy, php-format #, fuzzy, php-format
msgid "%s's groups" msgid "%s's groups"
msgstr "無此通知" 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 #, 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" msgstr "無法連結到伺服器:%s"
#: actions/apigrouplistall.php:90 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 actions/usergroups.php:62

View File

@ -55,9 +55,13 @@ class GeonamesPlugin extends Plugin
public $username = null; public $username = null;
public $token = null; public $token = null;
public $expiry = 7776000; // 90-day expiry 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 public $cachePrefix = null; // Optional shared memcache prefix override
// to share lookups between local instances. // to share lookups between local instances.
protected $lastTimeout = null; // timestamp of last web service timeout
/** /**
* convert a name into a Location object * convert a name into a Location object
* *
@ -437,9 +441,21 @@ class GeonamesPlugin extends Plugin
function getGeonames($method, $params) 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");
}
$result = $client->get($this->wsUrl($method, $params)); $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()) { if (!$result->isOk()) {
throw new Exception("HTTP error code " . $result->code); throw new Exception("HTTP error code " . $result->code);

View File

@ -65,6 +65,26 @@ class MeteorPlugin extends RealtimePlugin
parent::__construct(); 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() function _getScripts()
{ {
$scripts = parent::_getScripts(); $scripts = parent::_getScripts();

View File

@ -73,9 +73,11 @@ class MobileProfilePlugin extends WAP20Plugin
$this->serveMobile = true; $this->serveMobile = true;
} else { } else {
// If they like the WAP 2.0 mimetype, serve them MP // If they like the WAP 2.0 mimetype, serve them MP
if (strstr('application/vnd.wap.xhtml+xml', $type) !== false) { // @fixme $type is undefined, making this if case useless and spewing errors.
$this->serveMobile = true; // What's the intent?
} else { //if (strstr('application/vnd.wap.xhtml+xml', $type) !== false) {
// $this->serveMobile = true;
//} else {
// If they are a mobile device that supports WAP 2.0, // If they are a mobile device that supports WAP 2.0,
// serve them MP // serve them MP
@ -139,8 +141,19 @@ class MobileProfilePlugin extends WAP20Plugin
'windows ce' 'windows ce'
); );
$blacklist = array(
'ipad', // Larger screen handles the full theme fairly well.
);
$httpuseragent = strtolower($_SERVER['HTTP_USER_AGENT']); $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) { foreach ($this->mobiledevices as $md) {
if (strstr($httpuseragent, $md) !== false) { if (strstr($httpuseragent, $md) !== false) {
$this->setMobileFeatures($httpuseragent); $this->setMobileFeatures($httpuseragent);
@ -149,7 +162,7 @@ class MobileProfilePlugin extends WAP20Plugin
break; break;
} }
} }
} //}
// If they are okay with MP, and the site has a mobile server, // If they are okay with MP, and the site has a mobile server,
// redirect there // redirect there
@ -167,7 +180,9 @@ class MobileProfilePlugin extends WAP20Plugin
return true; 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']) ? $httpaccept = isset($_SERVER['HTTP_ACCEPT']) ?
$_SERVER['HTTP_ACCEPT'] : null; $_SERVER['HTTP_ACCEPT'] : null;
@ -180,7 +195,7 @@ class MobileProfilePlugin extends WAP20Plugin
throw new ClientException(_('This page is not available in a '. throw new ClientException(_('This page is not available in a '.
'media type you accept'), 406); 'media type you accept'), 406);
} }
} //}
header('Content-Type: '.$type); header('Content-Type: '.$type);
@ -221,9 +236,12 @@ class MobileProfilePlugin extends WAP20Plugin
function onStartShowHeadElements($action) function onStartShowHeadElements($action)
{ {
if (!$action->serveMobile) { // @fixme nothing appears to set a serveMobile on any action,
return true; // so this is useless and spews errors. Is this supposed to be
} // checking $this?
//if (!$action->serveMobile) {
// return true;
//}
$action->showTitle(); $action->showTitle();
$action->showShortcutIcon(); $action->showShortcutIcon();

View File

@ -726,7 +726,8 @@ class Ostatus_profile extends Memcached_DataObject
* *
* @param string $profile_url * @param string $profile_url
* @return Ostatus_profile * @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()) public static function ensureProfileURL($profile_url, $hints=array())
@ -813,7 +814,7 @@ class Ostatus_profile extends Memcached_DataObject
* remote profiles. * remote profiles.
* *
* @return mixed Ostatus_profile or null * @return mixed Ostatus_profile or null
* @throws Exception for local profiles * @throws OStatusShadowException for local profiles
*/ */
static function getFromProfileURL($profile_url) static function getFromProfileURL($profile_url)
{ {
@ -836,7 +837,7 @@ class Ostatus_profile extends Memcached_DataObject
$user = User::staticGet('id', $profile->id); $user = User::staticGet('id', $profile->id);
if (!empty($user)) { 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 // Continue discovery; it's a remote profile
@ -1538,6 +1539,7 @@ class Ostatus_profile extends Memcached_DataObject
* @param string $addr webfinger address * @param string $addr webfinger address
* @return Ostatus_profile * @return Ostatus_profile
* @throws Exception on error conditions * @throws Exception on error conditions
* @throws OStatusShadowException if this reference would obscure a local user/group
*/ */
public static function ensureWebfinger($addr) public static function ensureWebfinger($addr)
{ {
@ -1616,9 +1618,18 @@ class Ostatus_profile extends Memcached_DataObject
$oprofile = self::ensureProfileURL($hints['profileurl'], $hints); $oprofile = self::ensureProfileURL($hints['profileurl'], $hints);
self::cacheSet(sprintf('ostatus_profile:webfinger:%s', $addr), $oprofile->uri); self::cacheSet(sprintf('ostatus_profile:webfinger:%s', $addr), $oprofile->uri);
return $oprofile; 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) { } catch (Exception $e) {
common_log(LOG_WARNING, "Failed creating profile from profile URL '$profileUrl': " . $e->getMessage()); common_log(LOG_WARNING, "Failed creating profile from profile URL '$profileUrl': " . $e->getMessage());
// keep looking // 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; 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);
}
}

View File

@ -50,20 +50,47 @@ $encGroup = str_replace($marker, '%', $encGroup);
$sql = "SELECT * FROM ostatus_profile WHERE uri LIKE '%s' OR uri LIKE '%s'"; $sql = "SELECT * FROM ostatus_profile WHERE uri LIKE '%s' OR uri LIKE '%s'";
$oprofile->query(sprintf($sql, $encProfile, $encGroup)); $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()) { while ($oprofile->fetch()) {
echo "$oprofile->uri"; $uri = $oprofile->uri;
if (preg_match('!/group/(\d+)/id!', $oprofile->uri, $matches)) {
if ($dry) { $id = intval($matches[1]);
echo " (unchanged)\n"; $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 { } else {
echo " removing bogus ostatus_profile entry..."; echo "$uri matched query, but we don't recognize it.\n";
continue;
}
if ($dry) {
echo " - skipping\n";
} else {
echo " - removing bogus ostatus_profile entry...";
$evil = clone($oprofile); $evil = clone($oprofile);
$evil->delete(); $evil->delete();
echo " ok\n"; 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";
}

View File

@ -34,7 +34,7 @@ function update_core($dir, $domain)
xgettext \ xgettext \
--from-code=UTF-8 \ --from-code=UTF-8 \
--default-domain=$domain \ --default-domain=$domain \
--output=locale/$domain.po \ --output=locale/$domain.pot \
--language=PHP \ --language=PHP \
--add-comments=TRANS \ --add-comments=TRANS \
--keyword="_m:1,1t" \ --keyword="_m:1,1t" \
@ -64,7 +64,7 @@ function do_update_plugin($dir, $domain)
xgettext \ xgettext \
--from-code=UTF-8 \ --from-code=UTF-8 \
--default-domain=$domain \ --default-domain=$domain \
--output=locale/$domain.po \ --output=locale/$domain.pot \
--language=PHP \ --language=PHP \
--add-comments=TRANS \ --add-comments=TRANS \
--keyword='' \ --keyword='' \

View File

@ -31,7 +31,7 @@ define('LACONICA', true); // compatibility
require_once(INSTALLDIR . '/lib/common.php'); require_once(INSTALLDIR . '/lib/common.php');
// Master StatusNet .pot file location (created by update_pot.sh) // 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); set_time_limit(60);
@ -98,7 +98,7 @@ foreach ($languages as $language) {
$new_file = curl_get_file($file_url); $new_file = curl_get_file($file_url);
if ($new_file === FALSE) { 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; continue;
} }