From c8dab140f41a397c245a8858cb6030e2c985012c Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 29 Oct 2010 11:13:33 -0400 Subject: [PATCH 01/22] add a hack to show ads on single-notice pages --- lib/uapplugin.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/lib/uapplugin.php b/lib/uapplugin.php index ef35bafbfb..2777817684 100644 --- a/lib/uapplugin.php +++ b/lib/uapplugin.php @@ -95,6 +95,24 @@ abstract class UAPPlugin extends Plugin $action->elementEnd('div'); } + // XXX: Hack to force ads to show on single-notice pages + + if (!is_null($this->rectangle) && + $action->trimmed('action') == 'shownotice') { + + $action->elementStart('div', array('id' => 'aside_primary', + 'class' => 'aside')); + + if (Event::handle('StartShowSections', array($action))) { + $action->showSections(); + Event::handle('EndShowSections', array($action)); + } + + $action->elementEnd('div'); + + return false; + } + return true; } From e90bf6c15ba83d995cbd2665185c3e4920a82a5a Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 29 Oct 2010 14:17:18 -0700 Subject: [PATCH 02/22] README bump for 0.9.6 final --- README | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README b/README index 6872634b88..b36d8b7454 100644 --- a/README +++ b/README @@ -3,7 +3,7 @@ README ------ StatusNet 0.9.6 "Man on the Moon" -25 October 2010 - RELEASE CANDIDATE +29 October 2010 This is the README file for StatusNet, the Open Source microblogging platform. It includes installation instructions, descriptions of @@ -122,6 +122,16 @@ Notable changes this version: - Header metadata on notice pages to aid in manual reposting on Facebook - Lots of little fixes... +Changes from 0.9.6 release candidate 1: +- fix for broken group pages when logged out +- fix for stuck ping queue entries when bad profile +- fix for bogus single-user nickname config entry error +- i18n updates +- nofollow updates +- SSL-only mode secure cookie fix +- experimental ApiLogger plugin for usage data gathering +- experimental follow-everyone plugin + A full changelog is available at http://status.net/wiki/StatusNet_0.9.6. Prerequisites From 0c64df8cd9723e15e6d0a6ca7b339cabf2cd93c3 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 29 Oct 2010 14:34:27 -0700 Subject: [PATCH 03/22] Quickie script to aid in building release tarballs -- encapsulates the archive-i18n gen-changelog gen-retar steps. --- scripts/make-release.php | 57 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 scripts/make-release.php diff --git a/scripts/make-release.php b/scripts/make-release.php new file mode 100644 index 0000000000..a62d2f4480 --- /dev/null +++ b/scripts/make-release.php @@ -0,0 +1,57 @@ +#!/usr/bin/env php +. + */ + +# Abort if called from a web server + +define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); + +require_once INSTALLDIR.'/scripts/commandline.inc'; + +$base = INSTALLDIR; +$encBase = escapeshellarg($base); + +$ver = STATUSNET_VERSION; + +// @fixme hack +if (preg_match('/^(\d+)\.(\d+)\.(\d+)/', $ver, $matches)) { + list(, $a, $b, $c) = $matches; + if ($c > '0') { + $cprime = $c - 1; + $prev = "$a.$b.$cprime"; + } else { + die("This is a .0 release; you need to provide a thingy.\n"); + } +} + +$tag = $ver; +$prefix = "statusnet-$tag"; +$target = "$prefix.tar.gz"; + +$cmd = << /tmp/$target) && \ +(cd /tmp && tar zxf $target && cd $prefix && make) && \ +(cd $encBase && git log --oneline {$prev}..{$tag} > /tmp/$prefix/Changelog) && \ +(cd /tmp && tar zcf $target $prefix) && \ +(cd /tmp && rm -rf $prefix) && \ +(mv /tmp/$target .) +END; + +echo $cmd; +echo "\n"; From 8391058ea409f02d12060e62c919752b58ba9a0c Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 30 Oct 2010 13:47:19 +0200 Subject: [PATCH 04/22] Tabs to spaces, superfluous whitespace removed. --- lib/ping.php | 75 +++++++++++++++++++++++++--------------------------- 1 file changed, 36 insertions(+), 39 deletions(-) diff --git a/lib/ping.php b/lib/ping.php index abf1c4048e..e1c7c748e2 100644 --- a/lib/ping.php +++ b/lib/ping.php @@ -20,13 +20,12 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } function ping_broadcast_notice($notice) { + if ($notice->is_local != Notice::LOCAL_PUBLIC && $notice->is_local != Notice::LOCAL_NONPUBLIC) { + return true; + } - if ($notice->is_local != Notice::LOCAL_PUBLIC && $notice->is_local != Notice::LOCAL_NONPUBLIC) { - return true; - } - - # Array of servers, URL => type - $notify = common_config('ping', 'notify'); + # Array of servers, URL => type + $notify = common_config('ping', 'notify'); try { $profile = $notice->getProfile(); } catch (Exception $e) { @@ -35,21 +34,21 @@ function ping_broadcast_notice($notice) { common_log(LOG_ERR, "Exception getting notice profile: " . $e->getMessage()); return true; } - $tags = ping_notice_tags($notice); + $tags = ping_notice_tags($notice); - foreach ($notify as $notify_url => $type) { - switch ($type) { - case 'xmlrpc': - case 'extended': - $req = xmlrpc_encode_request('weblogUpdates.ping', - array($profile->nickname, # site name - common_local_url('showstream', - array('nickname' => $profile->nickname)), - common_local_url('shownotice', - array('notice' => $notice->id)), - common_local_url('userrss', - array('nickname' => $profile->nickname)), - $tags)); + foreach ($notify as $notify_url => $type) { + switch ($type) { + case 'xmlrpc': + case 'extended': + $req = xmlrpc_encode_request('weblogUpdates.ping', + array($profile->nickname, # site name + common_local_url('showstream', + array('nickname' => $profile->nickname)), + common_local_url('shownotice', + array('notice' => $notice->id)), + common_local_url('userrss', + array('nickname' => $profile->nickname)), + $tags)); $request = HTTPClient::start(); $request->setConfig('connect_timeout', common_config('ping', 'timeout')); @@ -79,9 +78,8 @@ function ping_broadcast_notice($notice) { "Ping success for $notify_url $notice->id"); } break; - - case 'get': - case 'post': + case 'get': + case 'post': $args = array('name' => $profile->nickname, 'url' => common_local_url('showstream', array('nickname' => $profile->nickname)), @@ -108,26 +106,25 @@ function ping_broadcast_notice($notice) { "'$result->body'"); } break; - - default: - common_log(LOG_WARNING, 'Unknown notify type for ' . $notify_url . ': ' . $type); + default: + common_log(LOG_WARNING, 'Unknown notify type for ' . $notify_url . ': ' . $type); } - } + } return true; } function ping_notice_tags($notice) { - $tag = new Notice_tag(); - $tag->notice_id = $notice->id; - $tags = array(); - if ($tag->find()) { - while ($tag->fetch()) { - $tags[] = $tag->tag; - } - $tag->free(); - unset($tag); - return implode('|', $tags); - } - return NULL; + $tag = new Notice_tag(); + $tag->notice_id = $notice->id; + $tags = array(); + if ($tag->find()) { + while ($tag->fetch()) { + $tags[] = $tag->tag; + } + $tag->free(); + unset($tag); + return implode('|', $tags); + } + return NULL; } From 234b03d945b64ce43d2460be67ff11df74857da8 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 30 Oct 2010 14:36:54 +0200 Subject: [PATCH 05/22] * translator documentation updates. * added FIXMEs in actions/showgroup.php. * superfluous whitespace removed. --- actions/showgroup.php | 60 ++++++++++++++++++++++++++++++------------- lib/feedlist.php | 1 + lib/uapplugin.php | 9 ------- 3 files changed, 43 insertions(+), 27 deletions(-) diff --git a/actions/showgroup.php b/actions/showgroup.php index 8e8ff717c1..c872828442 100644 --- a/actions/showgroup.php +++ b/actions/showgroup.php @@ -46,10 +46,8 @@ define('MEMBERS_PER_SECTION', 27); * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ShowgroupAction extends GroupDesignAction { - /** page we're viewing. */ var $page = null; @@ -58,7 +56,6 @@ class ShowgroupAction extends GroupDesignAction * * @return boolean true */ - function isReadOnly($args) { return true; @@ -69,18 +66,21 @@ class ShowgroupAction extends GroupDesignAction * * @return string page title, with page number */ - function title() { if (!empty($this->group->fullname)) { + // @todo FIXME: Needs proper i18n. Maybe use a generic method for this? $base = $this->group->fullname . ' (' . $this->group->nickname . ')'; } else { $base = $this->group->nickname; } if ($this->page == 1) { + // TRANS: Page title for first group page. %s is a group name. return sprintf(_('%s group'), $base); } else { + // TRANS: Page title for any but first group page. + // TRANS: %1$s is a group name, $2$s is a page number. return sprintf(_('%1$s group, page %2$d'), $base, $this->page); @@ -96,7 +96,6 @@ class ShowgroupAction extends GroupDesignAction * * @return boolean success flag */ - function prepare($args) { parent::prepare($args); @@ -118,6 +117,7 @@ class ShowgroupAction extends GroupDesignAction } if (!$nickname) { + // TRANS: Client error displayed if no nickname argument was given requesting a group page. $this->clientError(_('No nickname.'), 404); return false; } @@ -135,6 +135,7 @@ class ShowgroupAction extends GroupDesignAction return false; } else { common_log(LOG_NOTICE, "Couldn't find local group for nickname '$nickname'"); + // TRANS: Client error displayed if no remote group with a given name was found requesting group page. $this->clientError(_('No such group.'), 404); return false; } @@ -143,6 +144,7 @@ class ShowgroupAction extends GroupDesignAction $this->group = User_group::staticGet('id', $local->group_id); if (!$this->group) { + // TRANS: Client error displayed if no local group with a given name was found requesting group page. $this->clientError(_('No such group.'), 404); return false; } @@ -160,7 +162,6 @@ class ShowgroupAction extends GroupDesignAction * * @return void */ - function handle($args) { $this->showPage(); @@ -171,7 +172,6 @@ class ShowgroupAction extends GroupDesignAction * * @return void */ - function showLocalNav() { $nav = new GroupNav($this, $this->group); @@ -183,7 +183,6 @@ class ShowgroupAction extends GroupDesignAction * * Shows a group profile and a list of group notices */ - function showContent() { $this->showGroupProfile(); @@ -195,7 +194,6 @@ class ShowgroupAction extends GroupDesignAction * * @return void */ - function showGroupNotices() { $notice = $this->group->getNotices(($this->page-1)*NOTICES_PER_PAGE, @@ -218,15 +216,16 @@ class ShowgroupAction extends GroupDesignAction * * @return void */ - function showGroupProfile() { $this->elementStart('div', array('id' => 'i', 'class' => 'entity_profile vcard author')); + // TRANS: Group profile header (h2). Text hidden by default. $this->element('h2', null, _('Group profile')); $this->elementStart('dl', 'entity_depiction'); + // TRANS: Label for group avatar (dt). Text hidden by default. $this->element('dt', null, _('Avatar')); $this->elementStart('dd'); @@ -242,6 +241,7 @@ class ShowgroupAction extends GroupDesignAction $this->elementEnd('dl'); $this->elementStart('dl', 'entity_nickname'); + // TRANS: Label for group nickname (dt). Text hidden by default. $this->element('dt', null, _('Nickname')); $this->elementStart('dd'); $hasFN = ($this->group->fullname) ? 'nickname url uid' : 'fn org nickname url uid'; @@ -253,6 +253,7 @@ class ShowgroupAction extends GroupDesignAction if ($this->group->fullname) { $this->elementStart('dl', 'entity_fn'); + // TRANS: Label for full group name (dt). Text hidden by default. $this->element('dt', null, _('Full name')); $this->elementStart('dd'); $this->element('span', 'fn org', $this->group->fullname); @@ -262,6 +263,7 @@ class ShowgroupAction extends GroupDesignAction if ($this->group->location) { $this->elementStart('dl', 'entity_location'); + // TRANS: Label for group location (dt). Text hidden by default. $this->element('dt', null, _('Location')); $this->element('dd', 'label', $this->group->location); $this->elementEnd('dl'); @@ -269,6 +271,7 @@ class ShowgroupAction extends GroupDesignAction if ($this->group->homepage) { $this->elementStart('dl', 'entity_url'); + // TRANS: Label for group URL (dt). Text hidden by default. $this->element('dt', null, _('URL')); $this->elementStart('dd'); $this->element('a', array('href' => $this->group->homepage, @@ -280,6 +283,7 @@ class ShowgroupAction extends GroupDesignAction if ($this->group->description) { $this->elementStart('dl', 'entity_note'); + // TRANS: Label for group description or group note (dt). Text hidden by default. $this->element('dt', null, _('Note')); $this->element('dd', 'note', $this->group->description); $this->elementEnd('dl'); @@ -290,6 +294,7 @@ class ShowgroupAction extends GroupDesignAction if (!empty($aliases)) { $this->elementStart('dl', 'entity_aliases'); + // TRANS: Label for group aliases (dt). Text hidden by default. $this->element('dt', null, _('Aliases')); $this->element('dd', 'aliases', implode(' ', $aliases)); $this->elementEnd('dl'); @@ -300,6 +305,7 @@ class ShowgroupAction extends GroupDesignAction $cur = common_current_user(); $this->elementStart('div', 'entity_actions'); + // TRANS: Group actions header (h2). Text hidden by default. $this->element('h2', null, _('Group actions')); $this->elementStart('ul'); $this->elementStart('li', 'entity_subscribe'); @@ -331,7 +337,6 @@ class ShowgroupAction extends GroupDesignAction * * @return void */ - function getFeeds() { $url = @@ -341,23 +346,27 @@ class ShowgroupAction extends GroupDesignAction return array(new Feed(Feed::RSS1, common_local_url('grouprss', array('nickname' => $this->group->nickname)), + // TRANS: Tooltip for feed link. %s is a group nickname. sprintf(_('Notice feed for %s group (RSS 1.0)'), $this->group->nickname)), new Feed(Feed::RSS2, common_local_url('ApiTimelineGroup', array('format' => 'rss', 'id' => $this->group->id)), + // TRANS: Tooltip for feed link. %s is a group nickname. sprintf(_('Notice feed for %s group (RSS 2.0)'), $this->group->nickname)), new Feed(Feed::ATOM, common_local_url('ApiTimelineGroup', array('format' => 'atom', 'id' => $this->group->id)), + // TRANS: Tooltip for feed link. %s is a group nickname. sprintf(_('Notice feed for %s group (Atom)'), $this->group->nickname)), new Feed(Feed::FOAF, common_local_url('foafgroup', array('nickname' => $this->group->nickname)), + // TRANS: Tooltip for feed link. %s is a group nickname. sprintf(_('FOAF for %s group'), $this->group->nickname))); } @@ -367,7 +376,6 @@ class ShowgroupAction extends GroupDesignAction * * @return void */ - function showSections() { $this->showMembers(); @@ -382,7 +390,6 @@ class ShowgroupAction extends GroupDesignAction * * @return void */ - function showMembers() { $member = $this->group->getMembers(0, MEMBERS_PER_SECTION); @@ -396,17 +403,22 @@ class ShowgroupAction extends GroupDesignAction if (Event::handle('StartShowGroupMembersMiniList', array($this))) { + // TRANS: Header for mini list of group members on a group page (h2). $this->element('h2', null, _('Members')); $gmml = new GroupMembersMiniList($member, $this); $cnt = $gmml->show(); if ($cnt == 0) { + // TRANS: Description for mini list of group members on a group page when the group has no members. $this->element('p', null, _('(None)')); } + // @todo FIXME: Should be shown if a group has more than 27 members, but I do not see it displayed at + // for example http://identi.ca/group/statusnet. Broken? if ($cnt > MEMBERS_PER_SECTION) { $this->element('a', array('href' => common_local_url('groupmembers', array('nickname' => $this->group->nickname))), + // TRANS: Link to all group members from mini list of group members if group has more than n members. _('All members')); } @@ -421,7 +433,6 @@ class ShowgroupAction extends GroupDesignAction * * @return void */ - function showAdmins() { $adminSection = new GroupAdminSection($this, $this->group); @@ -433,22 +444,26 @@ class ShowgroupAction extends GroupDesignAction * * @return void */ - function showStatistics() { $this->elementStart('div', array('id' => 'entity_statistics', 'class' => 'section')); + // TRANS: Header for group statistics on a group page (h2). $this->element('h2', null, _('Statistics')); $this->elementStart('dl', 'entity_created'); - $this->element('dt', null, _('Created')); + // @todo FIXME: i18n issue. This label gets a colon added from somewhere. Should be part of the message. + // TRANS: Label for creation date in statistics on group page. + $this->element('dt', null, _m('LABEL','Created')); $this->element('dd', null, date('j M Y', strtotime($this->group->created))); $this->elementEnd('dl'); $this->elementStart('dl', 'entity_members'); - $this->element('dt', null, _('Members')); + // @todo FIXME: i18n issue. This label gets a colon added from somewhere. Should be part of the message. + // TRANS: Label for member count in statistics on group page. + $this->element('dt', null, _m('LABEL','Members')); $this->element('dd', null, $this->group->getMemberCount()); $this->elementEnd('dl'); @@ -458,12 +473,21 @@ class ShowgroupAction extends GroupDesignAction function showAnonymousMessage() { if (!(common_config('site','closed') || common_config('site','inviteonly'))) { + // @todo FIXME: use group full name here if available instead of (uglier) primary alias. + // TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. + // TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, + // TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. + // TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). $m = sprintf(_('**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' . 'based on the Free Software [StatusNet](http://status.net/) tool. Its members share ' . 'short messages about their life and interests. '. '[Join now](%%%%action.register%%%%) to become part of this group and many more! ([Read more](%%%%doc.help%%%%))'), $this->group->nickname); } else { + // @todo FIXME: use group full name here if available instead of (uglier) primary alias. + // TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. + // TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, + // TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). $m = sprintf(_('**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' . 'based on the Free Software [StatusNet](http://status.net/) tool. Its members share ' . 'short messages about their life and interests. '), @@ -492,6 +516,7 @@ class GroupAdminSection extends ProfileSection function title() { + // TRANS: Header for list of group administrators on a group page (h2). return _('Admins'); } @@ -527,4 +552,3 @@ class GroupMembersMiniListItem extends ProfileMiniListItem return $aAttrs; } } - diff --git a/lib/feedlist.php b/lib/feedlist.php index 076576028d..bbe66b2e74 100644 --- a/lib/feedlist.php +++ b/lib/feedlist.php @@ -62,6 +62,7 @@ class FeedList extends Widget if (!empty($feeds)) { $this->out->elementStart('div', array('id' => 'export_data', 'class' => 'section')); + // TRANS: Header for feed links (h2). $this->out->element('h2', null, _('Feeds')); $this->out->elementStart('ul', array('class' => 'xoxo')); diff --git a/lib/uapplugin.php b/lib/uapplugin.php index 2777817684..26d6a72d89 100644 --- a/lib/uapplugin.php +++ b/lib/uapplugin.php @@ -51,7 +51,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - abstract class UAPPlugin extends Plugin { public $mediumRectangle = null; @@ -66,7 +65,6 @@ abstract class UAPPlugin extends Plugin * * @return boolean hook flag */ - function onEndShowStatusNetStyles($action) { // XXX: allow override by theme @@ -81,7 +79,6 @@ abstract class UAPPlugin extends Plugin * * @return boolean hook flag */ - function onStartShowAside($action) { if (!is_null($this->mediumRectangle)) { @@ -144,7 +141,6 @@ abstract class UAPPlugin extends Plugin * * @return boolean hook flag */ - function onStartShowSections($action) { if (!is_null($this->rectangle)) { @@ -165,7 +161,6 @@ abstract class UAPPlugin extends Plugin * * @return boolean hook flag */ - function onEndShowAside($action) { if (!is_null($this->wideSkyscraper)) { @@ -187,7 +182,6 @@ abstract class UAPPlugin extends Plugin * * @return void */ - abstract protected function showMediumRectangle($action); /** @@ -197,7 +191,6 @@ abstract class UAPPlugin extends Plugin * * @return void */ - abstract protected function showRectangle($action); /** @@ -207,7 +200,6 @@ abstract class UAPPlugin extends Plugin * * @return void */ - abstract protected function showWideSkyscraper($action); /** @@ -217,6 +209,5 @@ abstract class UAPPlugin extends Plugin * * @return void */ - abstract protected function showLeaderboard($action); } From 83233a8a43d45b10ad64f05123ee9b7f4d3b160b Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 31 Oct 2010 00:34:28 +0200 Subject: [PATCH 06/22] Fix i18n for B/kB/MB and add translator documentation. --- lib/imagefile.php | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/lib/imagefile.php b/lib/imagefile.php index e472877410..b70fd248e1 100644 --- a/lib/imagefile.php +++ b/lib/imagefile.php @@ -85,6 +85,8 @@ class ImageFile break; case UPLOAD_ERR_INI_SIZE: case UPLOAD_ERR_FORM_SIZE: + // TRANS: Exception thrown when too large a file is uploaded. + // TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". throw new Exception(sprintf(_('That file is too big. The maximum file size is %s.'), ImageFile::maxFileSize())); return; @@ -241,11 +243,16 @@ class ImageFile $value = ImageFile::maxFileSizeInt(); if ($value > 1024 * 1024) { - return ($value/(1024*1024)) . _('MB'); + $value = $value/(1024*1024); + // TRANS: Number of megabytes. %d is the number. + return sprintf(_m('%dMB','%dMB',$value),$value); } else if ($value > 1024) { - return ($value/(1024)) . _('kB'); + $value = $value/1024; + // TRANS: Number of kilobytes. %d is the number. + return sprintf(_m('%dkB','%dkB',$value),$value); } else { - return $value; + // TRANS: Number of bytes. %d is the number. + return sprintf(_m('%dB','%dB',$value),$value); } } From 08edd1fedfab532b1266a99f4d4b4b13a2e3aa6b Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 31 Oct 2010 00:58:35 +0200 Subject: [PATCH 07/22] * i18n/L10n updates. * translator documentation added/updated. * superfluous whitespace removed. --- actions/attachment.php | 8 +----- actions/attachment_ajax.php | 2 -- actions/attachment_thumbnail.php | 4 --- actions/avatarbynickname.php | 8 ++++-- actions/avatarsettings.php | 48 ++++++++++++++++++++------------ actions/block.php | 12 ++++---- actions/blockedfromgroup.php | 25 +++++++++++------ actions/bookmarklet.php | 5 ++-- actions/confirmaddress.php | 19 ++++++++----- actions/conversation.php | 17 ++--------- actions/editgroup.php | 36 ++++++++++++++++++++---- actions/newgroup.php | 20 +++++++++---- lib/unblockform.php | 6 +--- 13 files changed, 122 insertions(+), 88 deletions(-) diff --git a/actions/attachment.php b/actions/attachment.php index 6981354d10..45aa78728a 100644 --- a/actions/attachment.php +++ b/actions/attachment.php @@ -42,7 +42,6 @@ require_once INSTALLDIR.'/lib/attachmentlist.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class AttachmentAction extends Action { /** @@ -70,6 +69,7 @@ class AttachmentAction extends Action } if (empty($this->attachment)) { + // TRANS: Client error displayed trying to get a non-existing attachment. $this->clientError(_('No such attachment.'), 404); return false; } @@ -81,7 +81,6 @@ class AttachmentAction extends Action * * @return boolean true */ - function isReadOnly($args) { return true; @@ -129,7 +128,6 @@ class AttachmentAction extends Action * * @return void */ - function handle($args) { parent::handle($args); @@ -150,7 +148,6 @@ class AttachmentAction extends Action * * @return void */ - function showLocalNavBlock() { } @@ -162,7 +159,6 @@ class AttachmentAction extends Action * * @return void */ - function showContent() { $ali = new Attachment($this->attachment, $this); @@ -174,7 +170,6 @@ class AttachmentAction extends Action * * @return void */ - function showPageNoticeBlock() { } @@ -191,4 +186,3 @@ class AttachmentAction extends Action $atcs->show(); } } - diff --git a/actions/attachment_ajax.php b/actions/attachment_ajax.php index 1e07280750..fb7d15f8a2 100644 --- a/actions/attachment_ajax.php +++ b/actions/attachment_ajax.php @@ -42,7 +42,6 @@ require_once INSTALLDIR.'/actions/attachment.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class Attachment_ajaxAction extends AttachmentAction { /** @@ -80,4 +79,3 @@ class Attachment_ajaxAction extends AttachmentAction $this->elementEnd('div'); } } - diff --git a/actions/attachment_thumbnail.php b/actions/attachment_thumbnail.php index 7d0ac97a69..38648b8bef 100644 --- a/actions/attachment_thumbnail.php +++ b/actions/attachment_thumbnail.php @@ -42,10 +42,8 @@ require_once INSTALLDIR.'/actions/attachment.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class Attachment_thumbnailAction extends AttachmentAction { - function handle($args) { $this->showPage(); @@ -79,6 +77,4 @@ class Attachment_thumbnailAction extends AttachmentAction } $this->element('img', array('src' => $file_thumbnail->url, 'alt' => 'Thumbnail')); } - } - diff --git a/actions/avatarbynickname.php b/actions/avatarbynickname.php index 537950792f..fa97a86ebf 100644 --- a/actions/avatarbynickname.php +++ b/actions/avatarbynickname.php @@ -48,7 +48,7 @@ class AvatarbynicknameAction extends Action * Class handler. * * @param array $args query arguments - * + * * @return boolean false if nickname or user isn't found */ function handle($args) @@ -56,27 +56,32 @@ class AvatarbynicknameAction extends Action parent::handle($args); $nickname = $this->trimmed('nickname'); if (!$nickname) { + // TRANS: Client error displayed trying to get an avatar without providing a nickname. $this->clientError(_('No nickname.')); return; } $size = $this->trimmed('size'); if (!$size) { + // TRANS: Client error displayed trying to get an avatar without providing an avatar size. $this->clientError(_('No size.')); return; } $size = strtolower($size); if (!in_array($size, array('original', '96', '48', '24'))) { + // TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. $this->clientError(_('Invalid size.')); return; } $user = User::staticGet('nickname', $nickname); if (!$user) { + // TRANS: Client error displayed trying to get an avatar for a non-existing user. $this->clientError(_('No such user.')); return; } $profile = $user->getProfile(); if (!$profile) { + // TRANS: Client error displayed trying to get an avatar for a user without a profile. $this->clientError(_('User has no profile.')); return; } @@ -103,4 +108,3 @@ class AvatarbynicknameAction extends Action return true; } } - diff --git a/actions/avatarsettings.php b/actions/avatarsettings.php index 9d4040e75a..63dc8c8fee 100644 --- a/actions/avatarsettings.php +++ b/actions/avatarsettings.php @@ -49,7 +49,6 @@ define('MAX_ORIGINAL', 480); * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class AvatarsettingsAction extends AccountSettingsAction { var $mode = null; @@ -61,9 +60,9 @@ class AvatarsettingsAction extends AccountSettingsAction * * @return string Title of the page */ - function title() { + // TRANS: Title for avatar upload page. return _('Avatar'); } @@ -72,10 +71,12 @@ class AvatarsettingsAction extends AccountSettingsAction * * @return instructions for use */ - function getInstructions() { - return sprintf(_('You can upload your personal avatar. The maximum file size is %s.'), ImageFile::maxFileSize()); + // TRANS: Instruction for avatar upload page. + // TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". + return sprintf(_('You can upload your personal avatar. The maximum file size is %s.'), + ImageFile::maxFileSize()); } /** @@ -103,6 +104,7 @@ class AvatarsettingsAction extends AccountSettingsAction if (!$profile) { common_log_db_error($user, 'SELECT', __FILE__); + // TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. $this->serverError(_('User without matching profile.')); return; } @@ -116,14 +118,16 @@ class AvatarsettingsAction extends AccountSettingsAction 'action' => common_local_url('avatarsettings'))); $this->elementStart('fieldset'); + // TRANS: Avatar upload page form legend. $this->element('legend', null, _('Avatar settings')); $this->hidden('token', common_session_token()); - + if (Event::handle('StartAvatarFormData', array($this))) { $this->elementStart('ul', 'form_data'); if ($original) { $this->elementStart('li', array('id' => 'avatar_original', 'class' => 'avatar_view')); + // TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). $this->element('h2', null, _("Original")); $this->elementStart('div', array('id'=>'avatar_original_view')); $this->element('img', array('src' => $original->url, @@ -139,6 +143,7 @@ class AvatarsettingsAction extends AccountSettingsAction if ($avatar) { $this->elementStart('li', array('id' => 'avatar_preview', 'class' => 'avatar_view')); + // TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). $this->element('h2', null, _("Preview")); $this->elementStart('div', array('id'=>'avatar_preview_view')); $this->element('img', array('src' => $original->url, @@ -146,7 +151,8 @@ class AvatarsettingsAction extends AccountSettingsAction 'height' => AVATAR_PROFILE_SIZE, 'alt' => $user->nickname)); $this->elementEnd('div'); - $this->submit('delete', _('Delete')); + // TRANS: Button on avatar upload page to delete current avatar. + $this->submit('delete', _m('BUTTON','Delete')); $this->elementEnd('li'); } @@ -163,7 +169,8 @@ class AvatarsettingsAction extends AccountSettingsAction $this->elementStart('ul', 'form_actions'); $this->elementStart('li'); - $this->submit('upload', _('Upload')); + // TRANS: Button on avatar upload page to upload an avatar. + $this->submit('upload', _m('BUTTON','Upload')); $this->elementEnd('li'); $this->elementEnd('ul'); } @@ -171,7 +178,6 @@ class AvatarsettingsAction extends AccountSettingsAction $this->elementEnd('fieldset'); $this->elementEnd('form'); - } function showCropForm() @@ -182,6 +188,7 @@ class AvatarsettingsAction extends AccountSettingsAction if (!$profile) { common_log_db_error($user, 'SELECT', __FILE__); + // TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. $this->serverError(_('User without matching profile.')); return; } @@ -194,6 +201,7 @@ class AvatarsettingsAction extends AccountSettingsAction 'action' => common_local_url('avatarsettings'))); $this->elementStart('fieldset'); + // TRANS: Avatar upload page crop form legend. $this->element('legend', null, _('Avatar settings')); $this->hidden('token', common_session_token()); @@ -202,6 +210,7 @@ class AvatarsettingsAction extends AccountSettingsAction $this->elementStart('li', array('id' => 'avatar_original', 'class' => 'avatar_view')); + // TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). $this->element('h2', null, _("Original")); $this->elementStart('div', array('id'=>'avatar_original_view')); $this->element('img', array('src' => Avatar::url($this->filedata['filename']), @@ -214,6 +223,7 @@ class AvatarsettingsAction extends AccountSettingsAction $this->elementStart('li', array('id' => 'avatar_preview', 'class' => 'avatar_view')); + // TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). $this->element('h2', null, _("Preview")); $this->elementStart('div', array('id'=>'avatar_preview_view')); $this->element('img', array('src' => Avatar::url($this->filedata['filename']), @@ -228,13 +238,14 @@ class AvatarsettingsAction extends AccountSettingsAction 'type' => 'hidden', 'id' => $crop_info)); } - $this->submit('crop', _('Crop')); + + // TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. + $this->submit('crop', _m('BUTTON','Crop')); $this->elementEnd('li'); $this->elementEnd('ul'); $this->elementEnd('fieldset'); $this->elementEnd('form'); - } /** @@ -244,7 +255,6 @@ class AvatarsettingsAction extends AccountSettingsAction * * @return void */ - function handlePost() { // Workaround for PHP returning empty $_POST and $_FILES when POST @@ -271,7 +281,7 @@ class AvatarsettingsAction extends AccountSettingsAction 'Try again, please.')); return; } - + if (Event::handle('StartAvatarSaveForm', array($this))) { if ($this->arg('upload')) { $this->uploadAvatar(); @@ -280,6 +290,7 @@ class AvatarsettingsAction extends AccountSettingsAction } else if ($this->arg('delete')) { $this->deleteAvatar(); } else { + // TRANS: Unexpected validation error on avatar upload form. $this->showForm(_('Unexpected form submission.')); } Event::handle('EndAvatarSaveForm', array($this)); @@ -294,7 +305,6 @@ class AvatarsettingsAction extends AccountSettingsAction * * @return void */ - function uploadAvatar() { try { @@ -304,6 +314,7 @@ class AvatarsettingsAction extends AccountSettingsAction return; } if ($imagefile === null) { + // TRANS: Validation error on avatar upload form when no file was uploaded. $this->showForm(_('No file uploaded.')); return; } @@ -331,6 +342,7 @@ class AvatarsettingsAction extends AccountSettingsAction $this->mode = 'crop'; + // TRANS: Avatar upload form unstruction after uploading a file. $this->showForm(_('Pick a square area of the image to be your avatar'), true); } @@ -340,12 +352,12 @@ class AvatarsettingsAction extends AccountSettingsAction * * @return void */ - function cropAvatar() { $filedata = $_SESSION['FILEDATA']; if (!$filedata) { + // TRANS: Server error displayed if an avatar upload went wrong somehow server side. $this->serverError(_('Lost our file data.')); return; } @@ -372,21 +384,21 @@ class AvatarsettingsAction extends AccountSettingsAction $this->showForm(_('Avatar updated.'), true); common_broadcast_profile($profile); } else { + // TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. $this->showForm(_('Failed updating avatar.')); } } - + /** * Get rid of the current avatar. * * @return void */ - function deleteAvatar() { $user = common_current_user(); $profile = $user->getProfile(); - + $avatar = $profile->getOriginalAvatar(); if($avatar) $avatar->delete(); $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE); @@ -396,6 +408,7 @@ class AvatarsettingsAction extends AccountSettingsAction $avatar = $profile->getAvatar(AVATAR_MINI_SIZE); if($avatar) $avatar->delete(); + // TRANS: Success message for deleting a user avatar. $this->showForm(_('Avatar deleted.'), true); } @@ -416,7 +429,6 @@ class AvatarsettingsAction extends AccountSettingsAction * * @return void */ - function showScripts() { parent::showScripts(); diff --git a/actions/block.php b/actions/block.php index 93f8ec9370..e87353b4e1 100644 --- a/actions/block.php +++ b/actions/block.php @@ -42,7 +42,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class BlockAction extends ProfileFormAction { var $profile = null; @@ -54,7 +53,6 @@ class BlockAction extends ProfileFormAction * * @return boolean success flag */ - function prepare($args) { if (!parent::prepare($args)) { @@ -66,6 +64,7 @@ class BlockAction extends ProfileFormAction assert(!empty($cur)); // checked by parent if ($cur->hasBlocked($this->profile)) { + // TRANS: Client error displayed when blocking a user that has already been blocked. $this->clientError(_('You already blocked that user.')); return false; } @@ -82,7 +81,6 @@ class BlockAction extends ProfileFormAction * * @return void */ - function handle($args) { if ($_SERVER['REQUEST_METHOD'] == 'POST') { @@ -104,6 +102,7 @@ class BlockAction extends ProfileFormAction } function title() { + // TRANS: Title for block user page. return _('Block user'); } @@ -133,8 +132,10 @@ class BlockAction extends ProfileFormAction 'action' => common_local_url('block'))); $this->elementStart('fieldset'); $this->hidden('token', common_session_token()); + // TRANS: Legend for block user form. $this->element('legend', _('Block user')); $this->element('p', null, + // TRANS: Explanation of consequences when blocking a user on the block user page. _('Are you sure you want to block this user? '. 'Afterwards, they will be unsubscribed from you, '. 'unable to subscribe to you in the future, and '. @@ -184,6 +185,7 @@ class BlockAction extends ProfileFormAction } if (!$result) { + // TRANS: Server error displayed when blocking a user fails. $this->serverError(_('Failed to save block information.')); return; } @@ -199,7 +201,7 @@ class BlockAction extends ProfileFormAction * Override for form session token checks; on our first hit we're just * requesting confirmation, which doesn't need a token. We need to be * able to take regular GET requests from email! - * + * * @throws ClientException if token is bad on POST request or if we have * confirmation parameters which could trigger something. */ @@ -216,7 +218,7 @@ class BlockAction extends ProfileFormAction /** * If we reached this form without returnto arguments, return to the * current user's subscription list. - * + * * @return string URL */ function defaultReturnTo() diff --git a/actions/blockedfromgroup.php b/actions/blockedfromgroup.php index a0598db270..6ff572c05d 100644 --- a/actions/blockedfromgroup.php +++ b/actions/blockedfromgroup.php @@ -40,7 +40,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class BlockedfromgroupAction extends GroupDesignAction { var $page = null; @@ -70,6 +69,7 @@ class BlockedfromgroupAction extends GroupDesignAction } if (!$nickname) { + // TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. $this->clientError(_('No nickname.'), 404); return false; } @@ -77,6 +77,7 @@ class BlockedfromgroupAction extends GroupDesignAction $local = Local_group::staticGet('nickname', $nickname); if (!$local) { + // TRANS: Client error displayed when requesting a list of blocked users for a non-local group. $this->clientError(_('No such group.'), 404); return false; } @@ -84,6 +85,7 @@ class BlockedfromgroupAction extends GroupDesignAction $this->group = User_group::staticGet('id', $local->group_id); if (!$this->group) { + // TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. $this->clientError(_('No such group.'), 404); return false; } @@ -94,9 +96,13 @@ class BlockedfromgroupAction extends GroupDesignAction function title() { if ($this->page == 1) { + // TRANS: Title for first page with list of users blocked from a group. + // TRANS: %s is a group nickname. return sprintf(_('%s blocked profiles'), $this->group->nickname); } else { + // TRANS: Title for any but the first page with list of users blocked from a group. + // TRANS: %1$s is a group nickname, %2$d is a page number. return sprintf(_('%1$s blocked profiles, page %2$d'), $this->group->nickname, $this->page); @@ -112,6 +118,7 @@ class BlockedfromgroupAction extends GroupDesignAction function showPageNotice() { $this->element('p', 'instructions', + // TRANS: Instructions for list of users blocked from a group. _('A list of the users blocked from joining this group.')); } @@ -205,7 +212,6 @@ class GroupBlockListItem extends ProfileListItem * * @see UnblockForm */ - class GroupUnblockForm extends Form { /** @@ -234,7 +240,6 @@ class GroupUnblockForm extends Form * @param User_group $group group to block user from * @param array $args return-to args */ - function __construct($out=null, $profile=null, $group=null, $args=null) { parent::__construct($out); @@ -249,7 +254,6 @@ class GroupUnblockForm extends Form * * @return int ID of the form */ - function id() { // This should be unique for the page. @@ -261,7 +265,6 @@ class GroupUnblockForm extends Form * * @return string class of the form */ - function formClass() { return 'form_group_unblock'; @@ -272,7 +275,6 @@ class GroupUnblockForm extends Form * * @return string URL of the action */ - function action() { return common_local_url('groupunblock'); @@ -285,6 +287,7 @@ class GroupUnblockForm extends Form */ function formLegend() { + // TRANS: Form legend for unblocking a user from a group. $this->out->element('legend', null, _('Unblock user from group')); } @@ -293,7 +296,6 @@ class GroupUnblockForm extends Form * * @return void */ - function formData() { $this->out->hidden('unblockto-' . $this->profile->id, @@ -314,9 +316,14 @@ class GroupUnblockForm extends Form * * @return void */ - function formActions() { - $this->out->submit('submit', _('Unblock'), 'submit', null, _('Unblock this user')); + $this->out->submit('submit', + // TRANS: Button text for unblocking a user from a group. + _m('BUTTON','Unblock'), + 'submit', + null, + // TRANS: Tooltip for button for unblocking a user from a group. + _('Unblock this user')); } } diff --git a/actions/bookmarklet.php b/actions/bookmarklet.php index 041c2e8947..9cf4e58f89 100644 --- a/actions/bookmarklet.php +++ b/actions/bookmarklet.php @@ -34,7 +34,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { require_once INSTALLDIR . '/actions/newnotice.php'; /** - * Action for posting a notice + * Action for posting a notice * * @category Bookmarklet * @package StatusNet @@ -42,12 +42,12 @@ require_once INSTALLDIR . '/actions/newnotice.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class BookmarkletAction extends NewnoticeAction { function showTitle() { // TRANS: Title for mini-posting window loaded from bookmarklet. + // TRANS: %s is the StatusNet site name. $this->element('title', null, sprintf(_('Post to %s'), common_config('site', 'name'))); } @@ -73,4 +73,3 @@ class BookmarkletAction extends NewnoticeAction { } } - diff --git a/actions/confirmaddress.php b/actions/confirmaddress.php index 8bf8c8c4d4..5617c53392 100644 --- a/actions/confirmaddress.php +++ b/actions/confirmaddress.php @@ -44,7 +44,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ConfirmaddressAction extends Action { /** type of confirmation. */ @@ -61,7 +60,6 @@ class ConfirmaddressAction extends Action * * @return void */ - function handle($args) { parent::handle($args); @@ -72,27 +70,30 @@ class ConfirmaddressAction extends Action } $code = $this->trimmed('code'); if (!$code) { + // TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. $this->clientError(_('No confirmation code.')); return; } $confirm = Confirm_address::staticGet('code', $code); if (!$confirm) { + // TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. $this->clientError(_('Confirmation code not found.')); return; } $cur = common_current_user(); if ($cur->id != $confirm->user_id) { + // TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. $this->clientError(_('That confirmation code is not for you!')); return; } $type = $confirm->address_type; if (!in_array($type, array('email', 'jabber', 'sms'))) { - // TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. + // TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. $this->serverError(sprintf(_('Unrecognized address type %s.'), $type)); return; } if ($cur->$type == $confirm->address) { - // TRANS: Client error for an already confirmed email/jabbel/sms address. + // TRANS: Client error for an already confirmed email/jabber/sms address. $this->clientError(_('That address has already been confirmed.')); return; } @@ -113,6 +114,7 @@ class ConfirmaddressAction extends Action if (!$result) { common_log_db_error($cur, 'UPDATE', __FILE__); + // TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. $this->serverError(_('Couldn\'t update user.')); return; } @@ -125,7 +127,9 @@ class ConfirmaddressAction extends Action if (!$result) { common_log_db_error($confirm, 'DELETE', __FILE__); - $this->serverError(_('Couldn\'t delete email confirmation.')); + // TRANS: Server error displayed when an address confirmation code deletion from the + // TRANS: database fails in the contact address confirmation action. + $this->serverError(_('Could not delete address confirmation.')); return; } @@ -140,9 +144,9 @@ class ConfirmaddressAction extends Action * * @return string title */ - function title() { + // TRANS: Title for the contact address confirmation action. return _('Confirm address'); } @@ -151,13 +155,14 @@ class ConfirmaddressAction extends Action * * @return void */ - function showContent() { $cur = common_current_user(); $type = $this->type; $this->element('p', null, + // TRANS: Success message for the contact address confirmation action. + // TRANS: %s can be 'email', 'jabber', or 'sms'. sprintf(_('The address "%s" has been '. 'confirmed for your account.'), $cur->$type)); diff --git a/actions/conversation.php b/actions/conversation.php index 900a724ef3..8d11df37bc 100644 --- a/actions/conversation.php +++ b/actions/conversation.php @@ -45,7 +45,6 @@ require_once INSTALLDIR.'/lib/noticelist.php'; * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class ConversationAction extends Action { var $id = null; @@ -58,7 +57,6 @@ class ConversationAction extends Action * * @return boolean false if id not passed in */ - function prepare($args) { parent::prepare($args); @@ -81,7 +79,6 @@ class ConversationAction extends Action * * @return void */ - function handle($args) { parent::handle($args); @@ -93,10 +90,10 @@ class ConversationAction extends Action * * @return string page title */ - function title() { - return _("Conversation"); + // TRANS: Title for page with a conversion (multiple notices in context). + return _('Conversation'); } /** @@ -107,7 +104,6 @@ class ConversationAction extends Action * * @return void */ - function showContent() { $notices = Notice::conversationStream($this->id, null, null); @@ -134,7 +130,6 @@ class ConversationAction extends Action * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class ConversationTree extends NoticeList { var $tree = null; @@ -145,12 +140,12 @@ class ConversationTree extends NoticeList * * @return void */ - function show() { $cnt = $this->_buildTree(); $this->out->elementStart('div', array('id' =>'notices_primary')); + // TRANS: Header on conversation page. Hidden by default (h2). $this->out->element('h2', null, _('Notices')); $this->out->elementStart('ol', array('class' => 'notices xoxo')); @@ -200,7 +195,6 @@ class ConversationTree extends NoticeList * * @return void */ - function showNoticePlus($id) { $notice = $this->table[$id]; @@ -237,7 +231,6 @@ class ConversationTree extends NoticeList * * @return NoticeListItem a list item to show */ - function newListItem($notice) { return new ConversationTreeItem($notice, $this->out); @@ -255,7 +248,6 @@ class ConversationTree extends NoticeList * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class ConversationTreeItem extends NoticeListItem { /** @@ -266,7 +258,6 @@ class ConversationTreeItem extends NoticeListItem * * @return void */ - function showStart() { return; @@ -280,7 +271,6 @@ class ConversationTreeItem extends NoticeListItem * * @return void */ - function showEnd() { return; @@ -293,7 +283,6 @@ class ConversationTreeItem extends NoticeListItem * * @return void */ - function showContext() { return; diff --git a/actions/editgroup.php b/actions/editgroup.php index eaadbabe45..4d3af34c7b 100644 --- a/actions/editgroup.php +++ b/actions/editgroup.php @@ -45,14 +45,13 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class EditgroupAction extends GroupDesignAction { - var $msg; function title() { + // TRANS: Title for form to edit a group. %s is a group nickname. return sprintf(_('Edit %s group'), $this->group->nickname); } @@ -65,6 +64,7 @@ class EditgroupAction extends GroupDesignAction parent::prepare($args); if (!common_logged_in()) { + // TRANS: Client error displayed trying to edit a group while not logged in. $this->clientError(_('You must be logged in to create a group.')); return false; } @@ -81,6 +81,7 @@ class EditgroupAction extends GroupDesignAction } if (!$nickname) { + // TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. $this->clientError(_('No nickname.'), 404); return false; } @@ -97,6 +98,7 @@ class EditgroupAction extends GroupDesignAction } if (!$this->group) { + // TRANS: Client error displayed trying to edit a non-existing group. $this->clientError(_('No such group.'), 404); return false; } @@ -104,6 +106,7 @@ class EditgroupAction extends GroupDesignAction $cur = common_current_user(); if (!$cur->isAdmin($this->group)) { + // TRANS: Client error displayed trying to edit a group while not being a group admin. $this->clientError(_('You must be an admin to edit the group.'), 403); return false; } @@ -120,7 +123,6 @@ class EditgroupAction extends GroupDesignAction * * @return void */ - function handle($args) { parent::handle($args); @@ -155,6 +157,7 @@ class EditgroupAction extends GroupDesignAction $this->element('p', 'error', $this->msg); } else { $this->element('p', 'instructions', + // TRANS: Form instructions for group edit form. _('Use this form to edit the group.')); } } @@ -169,6 +172,7 @@ class EditgroupAction extends GroupDesignAction { $cur = common_current_user(); if (!$cur->isAdmin($this->group)) { + // TRANS: Client error displayed trying to edit a group while not being a group admin. $this->clientError(_('You must be an admin to edit the group.'), 403); return; } @@ -183,28 +187,39 @@ class EditgroupAction extends GroupDesignAction if (!Validate::string($nickname, array('min_length' => 1, 'max_length' => 64, 'format' => NICKNAME_FMT))) { + // TRANS: Group edit form validation error. $this->showForm(_('Nickname must have only lowercase letters '. 'and numbers and no spaces.')); return; } else if ($this->nicknameExists($nickname)) { + // TRANS: Group edit form validation error. $this->showForm(_('Nickname already in use. Try another one.')); return; } else if (!User_group::allowedNickname($nickname)) { + // TRANS: Group edit form validation error. $this->showForm(_('Not a valid nickname.')); return; } else if (!is_null($homepage) && (strlen($homepage) > 0) && !Validate::uri($homepage, array('allowed_schemes' => array('http', 'https')))) { + // TRANS: Group edit form validation error. $this->showForm(_('Homepage is not a valid URL.')); return; } else if (!is_null($fullname) && mb_strlen($fullname) > 255) { + // TRANS: Group edit form validation error. $this->showForm(_('Full name is too long (maximum 255 characters).')); return; } else if (User_group::descriptionTooLong($description)) { - $this->showForm(sprintf(_('Description is too long (max %d chars).'), User_group::maxDescription())); + $this->showForm(sprintf( + // TRANS: Group edit form validation error. + _m('Description is too long (maximum %d character).', + 'Description is too long (maximum %d characters).', + User_group::maxDescription()), + User_group::maxDescription())); return; } else if (!is_null($location) && mb_strlen($location) > 255) { + // TRANS: Group edit form validation error. $this->showForm(_('Location is too long (maximum 255 characters).')); return; } @@ -216,7 +231,11 @@ class EditgroupAction extends GroupDesignAction } if (count($aliases) > common_config('group', 'maxaliases')) { - $this->showForm(sprintf(_('Too many aliases! Maximum %d.'), + // TRANS: Group edit form validation error. + // TRANS: %d is the maximum number of allowed aliases. + $this->showForm(sprintf(_m('Too many aliases! Maximum %d allowed.', + 'Too many aliases! Maximum %d allowed.', + common_config('group', 'maxaliases')), common_config('group', 'maxaliases'))); return; } @@ -225,16 +244,19 @@ class EditgroupAction extends GroupDesignAction if (!Validate::string($alias, array('min_length' => 1, 'max_length' => 64, 'format' => NICKNAME_FMT))) { + // TRANS: Group edit form validation error. $this->showForm(sprintf(_('Invalid alias: "%s"'), $alias)); return; } if ($this->nicknameExists($alias)) { + // TRANS: Group edit form validation error. $this->showForm(sprintf(_('Alias "%s" already in use. Try another one.'), $alias)); return; } // XXX assumes alphanum nicknames if (strcmp($alias, $nickname) == 0) { + // TRANS: Group edit form validation error. $this->showForm(_('Alias can\'t be the same as nickname.')); return; } @@ -255,12 +277,14 @@ class EditgroupAction extends GroupDesignAction if (!$result) { common_log_db_error($this->group, 'UPDATE', __FILE__); + // TRANS: Server error displayed when editing a group fails. $this->serverError(_('Could not update group.')); } $result = $this->group->setAliases($aliases); if (!$result) { + // TRANS: Server error displayed when group aliases could not be added. $this->serverError(_('Could not create aliases.')); } @@ -277,6 +301,7 @@ class EditgroupAction extends GroupDesignAction array('nickname' => $nickname)), 303); } else { + // TRANS: Group edit form success message. $this->showForm(_('Options saved.')); } } @@ -300,4 +325,3 @@ class EditgroupAction extends GroupDesignAction return false; } } - diff --git a/actions/newgroup.php b/actions/newgroup.php index 2951920362..9c1870b1c6 100644 --- a/actions/newgroup.php +++ b/actions/newgroup.php @@ -43,25 +43,25 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class NewgroupAction extends Action { var $msg; function title() { + // TRANS: Title for form to create a group. return _('New group'); } /** * Prepare to run */ - function prepare($args) { parent::prepare($args); if (!common_logged_in()) { + // TRANS: Client error displayed trying to create a group while not logged in. $this->clientError(_('You must be logged in to create a group.')); return false; } @@ -78,7 +78,6 @@ class NewgroupAction extends Action * * @return void */ - function handle($args) { parent::handle($args); @@ -107,6 +106,7 @@ class NewgroupAction extends Action $this->element('p', 'error', $this->msg); } else { $this->element('p', 'instructions', + // TRANS: Form instructions for group create form. _('Use this form to create a new group.')); } } @@ -123,26 +123,31 @@ class NewgroupAction extends Action if (!Validate::string($nickname, array('min_length' => 1, 'max_length' => 64, 'format' => NICKNAME_FMT))) { + // TRANS: Group create form validation error. $this->showForm(_('Nickname must have only lowercase letters '. 'and numbers and no spaces.')); return; } else if ($this->nicknameExists($nickname)) { + // TRANS: Group create form validation error. $this->showForm(_('Nickname already in use. Try another one.')); return; } else if (!User_group::allowedNickname($nickname)) { + // TRANS: Group create form validation error. $this->showForm(_('Not a valid nickname.')); return; } else if (!is_null($homepage) && (strlen($homepage) > 0) && !Validate::uri($homepage, array('allowed_schemes' => array('http', 'https')))) { + // TRANS: Group create form validation error. $this->showForm(_('Homepage is not a valid URL.')); return; } else if (!is_null($fullname) && mb_strlen($fullname) > 255) { + // TRANS: Group create form validation error. $this->showForm(_('Full name is too long (maximum 255 characters).')); return; } else if (User_group::descriptionTooLong($description)) { - // TRANS: Form validation error creating a new group because the description is too long. + // TRANS: Group create form validation error. // TRANS: %d is the maximum number of allowed characters. $this->showForm(sprintf(_m('Description is too long (maximum %d character).', 'Description is too long (maximum %d characters).', @@ -150,6 +155,7 @@ class NewgroupAction extends Action User_group::maxDescription())); return; } else if (!is_null($location) && mb_strlen($location) > 255) { + // TRANS: Group create form validation error. $this->showForm(_('Location is too long (maximum 255 characters).')); return; } @@ -161,7 +167,7 @@ class NewgroupAction extends Action } if (count($aliases) > common_config('group', 'maxaliases')) { - // TRANS: Client error shown when providing too many aliases during group creation. + // TRANS: Group create form validation error. // TRANS: %d is the maximum number of allowed aliases. $this->showForm(sprintf(_m('Too many aliases! Maximum %d allowed.', 'Too many aliases! Maximum %d allowed.', @@ -174,16 +180,19 @@ class NewgroupAction extends Action if (!Validate::string($alias, array('min_length' => 1, 'max_length' => 64, 'format' => NICKNAME_FMT))) { + // TRANS: Group create form validation error. $this->showForm(sprintf(_('Invalid alias: "%s"'), $alias)); return; } if ($this->nicknameExists($alias)) { + // TRANS: Group create form validation error. $this->showForm(sprintf(_('Alias "%s" already in use. Try another one.'), $alias)); return; } // XXX assumes alphanum nicknames if (strcmp($alias, $nickname) == 0) { + // TRANS: Group create form validation error. $this->showForm(_('Alias can\'t be the same as nickname.')); return; } @@ -227,4 +236,3 @@ class NewgroupAction extends Action return false; } } - diff --git a/lib/unblockform.php b/lib/unblockform.php index b89d7ff78d..8daad3c92b 100644 --- a/lib/unblockform.php +++ b/lib/unblockform.php @@ -44,7 +44,6 @@ if (!defined('STATUSNET')) { * * @see BlockForm */ - class UnblockForm extends ProfileActionForm { /** @@ -52,7 +51,6 @@ class UnblockForm extends ProfileActionForm * * @return string Name of the action, lowercased. */ - function target() { return 'unblock'; @@ -63,11 +61,10 @@ class UnblockForm extends ProfileActionForm * * @return string Title of the form, internationalized */ - function title() { // TRANS: Title for the form to unblock a user. - return _('Unblock'); + return _m('TITLE','Unblock'); } /** @@ -75,7 +72,6 @@ class UnblockForm extends ProfileActionForm * * @return string description of the form, internationalized */ - function description() { // TRANS: Description of the form to unblock a user. From 5406873007fc2e85425347dd73a0dcafc687814a Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 31 Oct 2010 01:16:59 +0200 Subject: [PATCH 08/22] * translator documentation updated. * superfluous whitespace removed. * added FIXMEs for missing documentation and un-i18n-able timestamps. --- actions/groupunblock.php | 14 +++++----- actions/showmessage.php | 57 ++++++++++++++++++++-------------------- actions/subedit.php | 6 +++++ 3 files changed, 43 insertions(+), 34 deletions(-) diff --git a/actions/groupunblock.php b/actions/groupunblock.php index dd6b15c26c..ef2380725e 100644 --- a/actions/groupunblock.php +++ b/actions/groupunblock.php @@ -32,7 +32,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { } /** - * Unlock a user from a group + * Unblock a user from a group * * @category Action * @package StatusNet @@ -40,7 +40,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class GroupunblockAction extends Action { var $profile = null; @@ -53,11 +52,11 @@ class GroupunblockAction extends Action * * @return boolean success flag */ - function prepare($args) { parent::prepare($args); if (!common_logged_in()) { + // TRANS: Client error displayed when trying to unblock a user from a group while not logged in. $this->clientError(_('Not logged in.')); return false; } @@ -68,11 +67,13 @@ class GroupunblockAction extends Action } $id = $this->trimmed('unblockto'); if (empty($id)) { + // TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. $this->clientError(_('No profile specified.')); return false; } $this->profile = Profile::staticGet('id', $id); if (empty($this->profile)) { + // TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. $this->clientError(_('No profile with that ID.')); return false; } @@ -83,15 +84,18 @@ class GroupunblockAction extends Action } $this->group = User_group::staticGet('id', $group_id); if (empty($this->group)) { + // TRANS: Client error displayed when trying to unblock a user from a non-existing group. $this->clientError(_('No such group.')); return false; } $user = common_current_user(); if (!$user->isAdmin($this->group)) { + // TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. $this->clientError(_('Only an admin can unblock group members.'), 401); return false; } if (!Group_block::isBlocked($this->group, $this->profile)) { + // TRANS: Client error displayed when trying to unblock a non-blocked user from a group. $this->clientError(_('User is not blocked from group.')); return false; } @@ -105,7 +109,6 @@ class GroupunblockAction extends Action * * @return void */ - function handle($args) { parent::handle($args); @@ -119,12 +122,12 @@ class GroupunblockAction extends Action * * @return void */ - function unblockProfile() { $result = Group_block::unblockProfile($this->group, $this->profile); if (!$result) { + // TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. $this->serverError(_('Error removing the block.')); return; } @@ -146,4 +149,3 @@ class GroupunblockAction extends Action } } } - diff --git a/actions/showmessage.php b/actions/showmessage.php index db757948ba..d737f85d3a 100644 --- a/actions/showmessage.php +++ b/actions/showmessage.php @@ -26,8 +26,8 @@ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ -if (!defined('STATUSNET') && !defined('LACONICA')) { - exit(1); +if (!defined('STATUSNET') && !defined('LACONICA')) { + exit(1); } require_once INSTALLDIR.'/lib/mailbox.php'; @@ -36,26 +36,24 @@ require_once INSTALLDIR.'/lib/mailbox.php'; * Show a single message * * // XXX: It is totally weird how this works! - * + * * @category Personal * @package StatusNet * @author Evan Prodromou * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ShowmessageAction extends MailboxAction { /** * Message object to show */ - var $message = null; - + /** * The current user */ - + var $user = null; /** @@ -67,17 +65,17 @@ class ShowmessageAction extends MailboxAction * * @return success flag */ - function prepare($args) { parent::prepare($args); - + $this->page = 1; - + $id = $this->trimmed('message'); $this->message = Message::staticGet('id', $id); if (!$this->message) { + // TRANS: Client error displayed requesting a single message that does not exist. $this->clientError(_('No such message.'), 404); return false; } @@ -90,40 +88,47 @@ class ShowmessageAction extends MailboxAction function handle($args) { Action::handle($args); - - if ($this->user && ($this->user->id == $this->message->from_profile || + + if ($this->user && ($this->user->id == $this->message->from_profile || $this->user->id == $this->message->to_profile)) { $this->showPage(); } else { + // TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. $this->clientError(_('Only the sender and recipient ' . 'may read this message.'), 403); return; } } - + function title() - { + { if ($this->user->id == $this->message->from_profile) { $to = $this->message->getTo(); - return sprintf(_("Message to %1\$s on %2\$s"), + // @todo FIXME: Might be nice if the timestamp could be localised. + // TRANS: Page title for single direct message display when viewing user is the sender. + // TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. + return sprintf(_('Message to %1$s on %2$s'), $to->nickname, common_exact_date($this->message->created)); } else if ($this->user->id == $this->message->to_profile) { $from = $this->message->getFrom(); - return sprintf(_("Message from %1\$s on %2\$s"), + // @todo FIXME: Might be nice if the timestamp could be localised. + // TRANS: Page title for single message display. + // TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. + return sprintf(_('Message from %1$s on %2$s'), $from->nickname, common_exact_date($this->message->created)); } } - - function getMessages() - { + + function getMessages() + { $message = new Message(); $message->id = $this->message->id; $message->find(); return $message; } - + function getMessageProfile() { if ($this->user->id == $this->message->from_profile) { @@ -135,23 +140,21 @@ class ShowmessageAction extends MailboxAction return null; } } - + /** * Don't show local navigation * * @return void */ - function showLocalNavBlock() { } - + /** * Don't show page notice * * @return void */ - function showPageNoticeBlock() { } @@ -161,17 +164,15 @@ class ShowmessageAction extends MailboxAction * * @return void */ - - function showAside() + function showAside() { } - + /** * Don't show any instructions * * @return string */ - function getInstructions() { return ''; diff --git a/actions/subedit.php b/actions/subedit.php index cf6589e504..3b77aff584 100644 --- a/actions/subedit.php +++ b/actions/subedit.php @@ -19,6 +19,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } +// @todo FIXME: Documentation needed. class SubeditAction extends Action { var $profile = null; @@ -28,6 +29,7 @@ class SubeditAction extends Action parent::prepare($args); if (!common_logged_in()) { + // TRANS: Client error displayed trying a change a subscription while not logged in. $this->clientError(_('Not logged in.')); return false; } @@ -43,6 +45,7 @@ class SubeditAction extends Action $id = $this->trimmed('profile'); if (!$id) { + // TRANS: Client error displayed trying a change a subscription without providing a profile. $this->clientError(_('No profile specified.')); return false; } @@ -50,6 +53,7 @@ class SubeditAction extends Action $this->profile = Profile::staticGet('id', $id); if (!$this->profile) { + // TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. $this->clientError(_('No profile with that ID.')); return false; } @@ -67,6 +71,7 @@ class SubeditAction extends Action 'subscribed' => $this->profile->id)); if (!$sub) { + // TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. $this->clientError(_('You are not subscribed to that profile.')); return false; } @@ -80,6 +85,7 @@ class SubeditAction extends Action if (!$result) { common_log_db_error($sub, 'UPDATE', __FILE__); + // TRANS: Server error displayed when updating a subscription fails with a database error. $this->serverError(_('Could not save subscription.')); return false; } From 1c0e84f0660d1c47dce0e497ae4241a8bacf003a Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 31 Oct 2010 01:26:39 +0200 Subject: [PATCH 09/22] Add forgotten translator documentation. --- actions/avatarsettings.php | 1 + 1 file changed, 1 insertion(+) diff --git a/actions/avatarsettings.php b/actions/avatarsettings.php index 63dc8c8fee..375420c5c9 100644 --- a/actions/avatarsettings.php +++ b/actions/avatarsettings.php @@ -381,6 +381,7 @@ class AvatarsettingsAction extends AccountSettingsAction @unlink($filedata['filepath']); unset($_SESSION['FILEDATA']); $this->mode = 'upload'; + // TRANS: Success message for having updated a user avatar. $this->showForm(_('Avatar updated.'), true); common_broadcast_profile($profile); } else { From 68bfeaa6c69e676f5b08f6f3a2ec2576cd2fc6c9 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 31 Oct 2010 01:38:57 +0200 Subject: [PATCH 10/22] Localisation updates from http://translatewiki.net. --- locale/af/LC_MESSAGES/statusnet.po | 494 +++++++++++----- locale/ar/LC_MESSAGES/statusnet.po | 509 ++++++++++++----- locale/arz/LC_MESSAGES/statusnet.po | 504 +++++++++++----- locale/bg/LC_MESSAGES/statusnet.po | 491 +++++++++++----- locale/br/LC_MESSAGES/statusnet.po | 494 +++++++++++----- locale/ca/LC_MESSAGES/statusnet.po | 496 +++++++++++----- locale/cs/LC_MESSAGES/statusnet.po | 526 +++++++++++------ locale/de/LC_MESSAGES/statusnet.po | 496 +++++++++++----- locale/en_GB/LC_MESSAGES/statusnet.po | 496 +++++++++++----- locale/eo/LC_MESSAGES/statusnet.po | 510 +++++++++++------ locale/es/LC_MESSAGES/statusnet.po | 496 +++++++++++----- locale/fa/LC_MESSAGES/statusnet.po | 493 +++++++++++----- locale/fi/LC_MESSAGES/statusnet.po | 494 +++++++++++----- locale/fr/LC_MESSAGES/statusnet.po | 496 +++++++++++----- locale/ga/LC_MESSAGES/statusnet.po | 499 +++++++++++----- locale/gl/LC_MESSAGES/statusnet.po | 496 +++++++++++----- locale/hsb/LC_MESSAGES/statusnet.po | 502 +++++++++++----- locale/hu/LC_MESSAGES/statusnet.po | 494 +++++++++++----- locale/ia/LC_MESSAGES/statusnet.po | 496 +++++++++++----- locale/is/LC_MESSAGES/statusnet.po | 490 +++++++++++----- locale/it/LC_MESSAGES/statusnet.po | 496 +++++++++++----- locale/ja/LC_MESSAGES/statusnet.po | 491 +++++++++++----- locale/ka/LC_MESSAGES/statusnet.po | 490 +++++++++++----- locale/ko/LC_MESSAGES/statusnet.po | 493 +++++++++++----- locale/mk/LC_MESSAGES/statusnet.po | 496 +++++++++++----- locale/nb/LC_MESSAGES/statusnet.po | 496 +++++++++++----- locale/nl/LC_MESSAGES/statusnet.po | 516 +++++++++++------ locale/nn/LC_MESSAGES/statusnet.po | 491 +++++++++++----- locale/pl/LC_MESSAGES/statusnet.po | 538 ++++++++++++------ locale/pt/LC_MESSAGES/statusnet.po | 515 +++++++++++------ locale/pt_BR/LC_MESSAGES/statusnet.po | 496 +++++++++++----- locale/ru/LC_MESSAGES/statusnet.po | 499 +++++++++++----- locale/statusnet.pot | 474 ++++++++++----- locale/sv/LC_MESSAGES/statusnet.po | 496 +++++++++++----- locale/te/LC_MESSAGES/statusnet.po | 494 +++++++++++----- locale/tr/LC_MESSAGES/statusnet.po | 491 +++++++++++----- locale/uk/LC_MESSAGES/statusnet.po | 499 +++++++++++----- locale/zh_CN/LC_MESSAGES/statusnet.po | 493 +++++++++++----- .../locale/pt_BR/LC_MESSAGES/Adsense.po | 10 +- .../locale/nl/LC_MESSAGES/Facebook.po | 10 +- .../XCache/locale/fi/LC_MESSAGES/XCache.po | 30 + 41 files changed, 13156 insertions(+), 5830 deletions(-) create mode 100644 plugins/XCache/locale/fi/LC_MESSAGES/XCache.po diff --git a/locale/af/LC_MESSAGES/statusnet.po b/locale/af/LC_MESSAGES/statusnet.po index 446e35ccaf..0a6f30d664 100644 --- a/locale/af/LC_MESSAGES/statusnet.po +++ b/locale/af/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:08:42+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:19:48+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -115,6 +115,7 @@ msgstr "Hierdie bladsy bestaan nie." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -127,7 +128,7 @@ msgstr "Hierdie bladsy bestaan nie." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -299,11 +300,12 @@ msgstr "Kon nie die gebruiker opdateer nie." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -318,7 +320,7 @@ msgstr "Kon nie die profiel stoor nie." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -496,9 +498,11 @@ msgstr "Kon nie die gebruiker opdateer nie." msgid "Could not find target user." msgstr "Kon nie die gebruiker opdateer nie." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" @@ -506,35 +510,43 @@ msgstr "" "spasies bevat nie." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Die gebruikersnaam is reeds in gebruik. Kies 'n ander een." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Nie 'n geldige gebruikersnaam nie." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Tuisblad is nie 'n geldige URL nie." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -543,10 +555,11 @@ msgstr "Volledige naam is te lang (maksimum 255 karakters)." #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -554,9 +567,11 @@ msgstr[0] "Die beskrywing is te lank (die maksimum is %d karakters)." msgstr[1] "Die beskrywing is te lank (die maksimum is %d karakters)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -564,7 +579,12 @@ msgstr "Ligging is te lank is (maksimum 255 karakters)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, fuzzy, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -580,15 +600,19 @@ msgstr "Ongeldige alias: \"%s\"" #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Die alias \"%s\" word al reeds gebruik. Probeer 'n ander een." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "Die alias kan nie dieselfde as die gebruikersnaam wees nie." @@ -694,18 +718,18 @@ msgid "Request token already authorized." msgstr "" #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -723,12 +747,13 @@ msgid "Database error inserting oauth_token_association." msgstr "" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -777,6 +802,7 @@ msgstr "Gebruiker" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1029,105 +1055,139 @@ msgstr "Die API-funksie is nie gevind nie." msgid "User not found." msgstr "Die API-funksie is nie gevind nie." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "Die aanhangsel bestaan nie." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Geen gebruikersnaam nie." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Geen grootte nie." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Ongeldige grootte." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 #, fuzzy msgid "User without matching profile." msgstr "Hierdie gebruiker het nie 'n profiel nie." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Avatar-instellings" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Oorspronklik" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Voorskou" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Skrap" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Oplaai" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Uitsny" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "Geen lêer opgelaai nie." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "" -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Die avatar is opgedateer." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Die opdatering van die avatar het gefaal." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "Die avatar is verwyder." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "U het reeds die gebruiker geblokkeer." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Blokkeer gebruiker" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1140,7 +1200,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1149,7 +1209,7 @@ msgstr "Nee" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Moenie hierdie gebruiker blokkeer nie" @@ -1159,7 +1219,7 @@ msgstr "Moenie hierdie gebruiker blokkeer nie" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1168,94 +1228,115 @@ msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Blokkeer hierdie gebruiker" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "" +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "Die groep bestaan nie." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, fuzzy, php-format msgid "%s blocked profiles" msgstr "%s geblokkeerde gebruikers" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, fuzzy, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s en vriende, bladsy %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 #, fuzzy msgid "A list of the users blocked from joining this group." msgstr "Blok hierdie gebruiker van hierdie groep" -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Gee gebruiker weer toegang tot die groep" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Deblokkeer" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Deblokkeer hierdie gebruiker" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "groepe op %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Geen bevestigingskode." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 #, fuzzy msgid "Confirmation code not found." msgstr "Geen bevestigingskode." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 #, fuzzy msgid "That confirmation code is not for you!" msgstr "Geen bevestigingskode." -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "" -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 #, fuzzy msgid "That address has already been confirmed." msgstr "Die E-posadres bestaan reeds." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1263,7 +1344,7 @@ msgstr "Die E-posadres bestaan reeds." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1271,27 +1352,32 @@ msgstr "Die E-posadres bestaan reeds." msgid "Couldn't update user." msgstr "Kon nie gebruiker opdateer nie." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." msgstr "Kon nie e-posbevestiging verwyder nie." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Bevestig adres" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "" -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Gesprek" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Kennisgewings" @@ -1396,11 +1482,13 @@ msgstr "Moenie hierdie kennisgewing verwyder nie" msgid "Delete this group" msgstr "Verwyder die gebruiker" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1703,49 +1791,49 @@ msgstr "Die \"callback\"-URL is nie geldig nie." msgid "Could not update application." msgstr "Dit was nie moontlik om die applikasie by te werk nie." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Groep %s wysig" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "U moet aangeteken wees alvorens u 'n groep kan skep." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "U moet 'n administrateur wees alvorens u 'n groep kan wysig." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Gebruik hierdie vorm om die groep te wysig." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Die beskrywing is te lank (die maksimum is %d karakters)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Te veel aliasse! Die maksimum aantal is %d." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Ongeldige alias: \"%s\"" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Dit was nie moontlik om die groep by te werk nie." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Dit was nie moontlik om die aliasse te skep nie." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Opsies is gestoor." @@ -1937,6 +2025,12 @@ msgstr "Geen bevestigingskode." msgid "That is the wrong email address." msgstr "Dit is die verkeerde IM-adres." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Kon nie e-posbevestiging verwyder nie." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2119,19 +2213,23 @@ msgstr "Jy kan nie gebruikers op hierdie webwerf stilmaak nie." msgid "User already has this role." msgstr "Hierdie gebruiker is reeds stilgemaak." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "Geen profiel verskaf nie." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "Daar is geen profiel met daardie ID nie." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "Geen groep verskaf nie." @@ -2219,6 +2317,14 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Oplaai" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Uitsny" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" @@ -2353,16 +2459,19 @@ msgid "" "action.newgroup%%) yourself!" msgstr "" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "" -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 #, fuzzy msgid "User is not blocked from group." msgstr "Gee gebruiker weer toegang tot die groep" -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "" @@ -2909,10 +3018,12 @@ msgstr "Die organisasienaam is te lang (maksimum 255 karakters)." msgid "Could not create application." msgstr "Dit was nie moontlik om die applikasie te skep nie." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Nuwe groep" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 #, fuzzy msgid "Use this form to create a new group." @@ -3616,8 +3727,9 @@ msgstr "" "spasies bevat nie." #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Volledige naam" @@ -3656,8 +3768,9 @@ msgid "Bio" msgstr "Bio" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4365,7 +4478,8 @@ msgstr "Organisasie" msgid "Description" msgstr "Beskrywing" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Statistieke" @@ -4384,6 +4498,11 @@ msgstr "Die applikasie is nie gevind nie." msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Skrap" + #: actions/showapplication.php:261 #, fuzzy msgid "Application info" @@ -4471,77 +4590,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "" -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "%s groep" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "Groep %1$s, bladsy %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Groepsprofiel" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Nota" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "Aliasse" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Groepsaksies" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Voer vir vriende van %s (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Voer vir vriende van %s (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Voer vir vriende van %s (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "Vriend van 'n vriend vir die groep %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Lede" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(geen)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Alle lede" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Geskep" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Lede" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4551,7 +4699,10 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4560,24 +4711,31 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Administrateurs" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "Die boodskap bestaan nie." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "" -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, fuzzy, php-format msgid "Message to %1$s on %2$s" msgstr "Opdaterings van %1$s op %2$s." -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, fuzzy, php-format msgid "Message from %1$s on %2$s" msgstr "Opdaterings van %1$s op %2$s." @@ -5025,13 +5183,15 @@ msgstr "" msgid "Save snapshot settings" msgstr "Stoor toegangsinstellings" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 #, fuzzy msgid "You are not subscribed to that profile." msgstr "U volg hierdie gebruiker:" +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 #, fuzzy msgid "Could not save subscription." msgstr "Kon nie die profiel stoor nie." @@ -5829,12 +5989,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Welkom by %1$s, @%2$s!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "" #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -6987,7 +7147,8 @@ msgstr "Atom" msgid "FOAF" msgstr "Vriende van vriende (FOAF)" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -7150,41 +7311,59 @@ msgstr "" msgid "Unsupported image file format." msgstr "Nie-ondersteunde formaat." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, fuzzy, php-format msgid "That file is too big. The maximum file size is %s." msgstr "Die kennisgewing is te lank. Gebruik maksimum %d karakters." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 #, fuzzy msgid "Partial upload." msgstr "Geen lêer opgelaai nie." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "" -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "" -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 #, fuzzy msgid "Lost our file." msgstr "Die lêer bestaan nie." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Onbekende lêertipe" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "MB" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "MB" +msgstr[1] "MB" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "kB" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "kB" +msgstr[1] "kB" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" #: lib/jabber.php:387 #, php-format @@ -7992,6 +8171,13 @@ msgstr "Kon nie die profiel stoor nie." msgid "Top posters" msgstr "Mees aktiewe gebruikers" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Deblokkeer" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "" @@ -8181,3 +8367,9 @@ msgstr "Geen groep verskaf nie." #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "Die beskrywing is te lank (die maksimum is %d karakters)." + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "Te veel aliasse! Die maksimum aantal is %d." diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 005a5dc820..dbaf0b84a7 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -11,19 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:08:44+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:19:49+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " "2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " "99) ? 4 : 5 ) ) ) );\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -119,6 +119,7 @@ msgstr "لا صفحة كهذه." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -131,7 +132,7 @@ msgstr "لا صفحة كهذه." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -303,11 +304,12 @@ msgstr "تعذّر تحديث المستخدم." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -322,7 +324,7 @@ msgstr "لم يمكن حفظ الملف." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -505,44 +507,54 @@ msgstr "تعذّر تحديد المستخدم المصدر." msgid "Could not find target user." msgstr "تعذّر إيجاد المستخدم الهدف." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 #, fuzzy msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "1-64 حرفًا إنجليزيًا أو رقمًا بدون نقاط أو مسافات" #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "الاسم المستعار مستخدم بالفعل. جرّب اسمًا آخرًا." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "ليس اسمًا مستعارًا صحيحًا." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "الصفحة الرئيسية ليست عنونًا صالحًا." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -551,10 +563,11 @@ msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)" #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -566,9 +579,11 @@ msgstr[4] "المنظمة طويلة جدا (الأقصى %d حرفا)." msgstr[5] "المنظمة طويلة جدا (الأقصى %d حرفا)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -576,7 +591,12 @@ msgstr "المنظمة طويلة جدا (الأقصى 255 حرفا)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, fuzzy, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -596,15 +616,19 @@ msgstr "كنية غير صالحة: \"%s\"." #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "الاسم المستعار مستخدم بالفعل. جرّب اسمًا آخرًا." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "" @@ -713,18 +737,18 @@ msgid "Request token already authorized." msgstr "لا تملك تصريحًا." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -743,12 +767,13 @@ msgid "Database error inserting oauth_token_association." msgstr "خطأ في قاعدة البيانات أثناء حذف مستخدم تطبيق OAuth." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -797,6 +822,7 @@ msgstr "الحساب" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1057,105 +1083,138 @@ msgstr "لم يتم العثور على وسيلة API." msgid "User not found." msgstr "لم يُعثرعلى المستخدم." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "لا مرفق كهذا." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "لا اسم مستعار." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "لا حجم." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "حجم غير صالح." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "أفتار" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "بإمكانك رفع أفتارك الشخصي. أقصى حجم للملف هو %s." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "المستخدم بدون ملف مطابق." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "إعدادات الأفتار" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "الأصل" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "معاينة" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "احذف" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "ارفع" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 #, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "مجموعات" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "لم يُرفع ملف." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "" -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "رُفع الأفتار." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "فشل تحديث الأفتار." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "حُذف الأفتار." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "لقد منعت مسبقا هذا المستخدم." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "امنع المستخدم" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1168,7 +1227,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1177,7 +1236,7 @@ msgstr "لا" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "لا تمنع هذا المستخدم" @@ -1187,7 +1246,7 @@ msgstr "لا تمنع هذا المستخدم" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1196,92 +1255,113 @@ msgstr "نعم" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "امنع هذا المستخدم" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "فشل حفظ معلومات المنع." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "لا مجموعة كهذه." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, fuzzy, php-format msgid "%s blocked profiles" msgstr "%1$s ملفات ممنوعة, الصفحة %2$d" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s ملفات ممنوعة, الصفحة %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 #, fuzzy msgid "A list of the users blocked from joining this group." msgstr "قائمة بمستخدمي هذه المجموعة." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "ألغ منع المستخدم من المجموعة" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "ألغِ المنع" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "ألغِ منع هذا المستخدم" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "أرسل إلى %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "لا رمز تأكيد." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "لم يوجد رمز التأكيد." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "رمز التأكيد ليس لك!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "" -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 #, fuzzy msgid "That address has already been confirmed." msgstr "هذا البريد الإلكتروني ملك مستخدم آخر بالفعل." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1289,7 +1369,7 @@ msgstr "هذا البريد الإلكتروني ملك مستخدم آخر با #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1297,27 +1377,32 @@ msgstr "هذا البريد الإلكتروني ملك مستخدم آخر با msgid "Couldn't update user." msgstr "تعذّر تحديث المستخدم." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." -msgstr "تعذّر حذف تأكيد البريد الإلكتروني." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." +msgstr "تعذّر حذف تأكيد البريد المراسلة الفورية." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "أكد العنوان" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "" -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "محادثة" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "الإشعارات" @@ -1423,11 +1508,13 @@ msgstr "لا تحذف هذا الإشعار" msgid "Delete this group" msgstr "احذف هذا المستخدم" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1729,49 +1816,49 @@ msgstr "مسار المصدر ليس صحيحا." msgid "Could not update application." msgstr "لم يمكن تحديث التطبيق." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "عدّل مجموعة %s" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "يجب أن تكون والجًا لتنشئ مجموعة." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "يجب أن تكون إداريا لتعدل المجموعة." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "استخدم هذا النموذج لتعديل المجموعة." -#: actions/editgroup.php:205 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "المنظمة طويلة جدا (الأقصى %d حرفا)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "كنيات كيرة! العدد الأقصى هو %d." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "كنية غير صالحة: \"%s\"" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "تعذر تحديث المجموعة." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "تعذّر إنشاء الكنى." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "حُفظت الخيارات." @@ -1960,6 +2047,12 @@ msgstr "أُلغي تأكيد المراسلة الفورية." msgid "That is the wrong email address." msgstr "هذا عنوان بريد إلكتروني خطأ." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "تعذّر حذف تأكيد البريد الإلكتروني." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2138,19 +2231,23 @@ msgstr "لا يمكنك سحب أدوار المستخدمين على هذا ا msgid "User already has this role." msgstr "لدى المستخدم هذا الدور من قبل." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "لا ملف شخصي مُحدّد." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "لا ملف شخصي بهذه الهوية." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "لا مجموعة مُحدّدة." @@ -2232,6 +2329,15 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "بإمكانك رفع صورة شعار مجموعتك. أقصى حجم للملف هو %s." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "ارفع" + +#: actions/grouplogo.php:289 +#, fuzzy +msgid "Crop" +msgstr "مجموعات" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" @@ -2369,15 +2475,18 @@ msgid "" "action.newgroup%%) yourself!" msgstr "" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "" -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "المستخدم ليس ممنوعًا من المجموعة." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "خطأ أثناء منع الحجب." @@ -2939,10 +3048,12 @@ msgstr "المنظمة طويلة جدا (الأقصى 255 حرفا)." msgid "Could not create application." msgstr "لم يمكن إنشاء التطبيق." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "مجموعة جديدة" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "استخدم هذا النموذج لإنشاء مجموعة جديدة." @@ -3636,8 +3747,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 حرفًا إنجليزيًا أو رقمًا بدون نقاط أو مسافات" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "الاسم الكامل" @@ -3681,8 +3793,9 @@ msgid "Bio" msgstr "السيرة" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4373,7 +4486,8 @@ msgstr "المنظمة" msgid "Description" msgstr "الوصف" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "إحصاءات" @@ -4392,6 +4506,11 @@ msgstr "معلومات التطبيق" msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "احذف" + #: actions/showapplication.php:261 msgid "Application info" msgstr "معلومات التطبيق" @@ -4480,78 +4599,107 @@ msgstr "" msgid "This is a way to share what you like." msgstr "إنها إحدى وسائل مشاركة ما تحب." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "مجموعة %s" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "مجموعة %1$s، الصفحة %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "ملف المجموعة الشخصي" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "مسار" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "ملاحظة" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "الكنى" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 #, fuzzy msgid "Group actions" msgstr "تصرفات المستخدم" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "مجموعة %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "الأعضاء" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(لا شيء)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "جميع الأعضاء" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "أنشئت" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "الأعضاء" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4566,7 +4714,10 @@ msgstr "" "[انضم الآن](%%%%action.register%%%%) لتصبح عضوًا في هذه المجموعة ومجموعات " "أخرى عديدة! ([اقرأ المزيد](%%%%doc.help%%%%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4578,24 +4729,31 @@ msgstr "" "en.wikipedia.org/wiki/Micro-blogging) المبنية على البرنامج الحر [StatusNet]" "(http://status.net/). يتشارك أعضاؤها رسائل قصيرة عن حياتهم واهتماماتهم. " -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "الإداريون" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "لا رسالة كهذه." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "يحق للمُرسل والمستلم فقط قراءة هذه الرسالة." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, fuzzy, php-format msgid "Message to %1$s on %2$s" msgstr "الإشعارات التي فضلها %1$s في %2$s!" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, fuzzy, php-format msgid "Message from %1$s on %2$s" msgstr "نتائج البحث ل\"%1$s\" على %2$s" @@ -5036,13 +5194,15 @@ msgstr "" msgid "Save snapshot settings" msgstr "اذف إعدادت الموقع" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 #, fuzzy msgid "You are not subscribed to that profile." msgstr "لست مُشتركًا بأي أحد." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "تعذّر حفظ الاشتراك." @@ -5819,12 +5979,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "أهلا بكم في %1$s يا @%2$s!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "" #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -7009,7 +7169,8 @@ msgstr "أتوم" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -7170,41 +7331,71 @@ msgstr "" msgid "Unsupported image file format." msgstr "نسق غير مدعوم." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "هذا الملف كبير جدًا. إن أقصى حجم للملفات هو %s." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 #, fuzzy msgid "Partial upload." msgstr "لم يُرفع ملف." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "" -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "" -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 #, fuzzy msgid "Lost our file." msgstr "لا ملف كهذا." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "نوع ملف غير معروف" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "ميجابايت" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "ميجابايت" +msgstr[1] "ميجابايت" +msgstr[2] "ميجابايت" +msgstr[3] "ميجابايت" +msgstr[4] "ميجابايت" +msgstr[5] "ميجابايت" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "كيلوبايت" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "كيلوبايت" +msgstr[1] "كيلوبايت" +msgstr[2] "كيلوبايت" +msgstr[3] "كيلوبايت" +msgstr[4] "كيلوبايت" +msgstr[5] "كيلوبايت" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" #: lib/jabber.php:387 #, php-format @@ -8014,6 +8205,13 @@ msgstr "خطأ أثناء تحديث الملف الشخصي البعيد." msgid "Top posters" msgstr "أعلى المرسلين" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "ألغِ المنع" + #: lib/unsandboxform.php:69 #, fuzzy msgid "Unsandbox" @@ -8215,3 +8413,10 @@ msgstr "لا هوية مستخدم محددة." #, php-format msgid "%d entries in backup." msgstr "" + +#, fuzzy +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "المنظمة طويلة جدا (الأقصى %d حرفا)." + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "كنيات كيرة! العدد الأقصى هو %d." diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index 2f79e0763e..f6052299e2 100644 --- a/locale/arz/LC_MESSAGES/statusnet.po +++ b/locale/arz/LC_MESSAGES/statusnet.po @@ -11,19 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:08:45+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:19:50+0000\n" "Language-Team: Egyptian Spoken Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: arz\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=6; plural= n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -123,6 +123,7 @@ msgstr "لا وسم كهذا." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -135,7 +136,7 @@ msgstr "لا وسم كهذا." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -307,11 +308,12 @@ msgstr "تعذّر تحديث المستخدم." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -326,7 +328,7 @@ msgstr "لم يمكن حفظ الملف." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -510,43 +512,53 @@ msgstr "تعذّر إيجاد المستخدم الهدف." msgid "Could not find target user." msgstr "تعذّر إيجاد المستخدم الهدف." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "" #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "ليس اسمًا مستعارًا صحيحًا." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "الصفحه الرئيسيه ليست عنونًا صالحًا." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -555,10 +567,11 @@ msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)" #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -570,9 +583,11 @@ msgstr[4] "المنظمه طويله جدا (اكتر حاجه %d رمز)." msgstr[5] "المنظمه طويله جدا (اكتر حاجه %d رمز)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -580,7 +595,12 @@ msgstr "المنظمه طويله جدا (اكتر حاجه 255 رمز)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -600,15 +620,19 @@ msgstr "كنيه غير صالحة: \"%s\"" #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "" #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "" @@ -718,18 +742,18 @@ msgid "Request token already authorized." msgstr "لا تملك تصريحًا." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -748,12 +772,13 @@ msgid "Database error inserting oauth_token_association." msgstr "خطأ قاعده البيانات أثناء إدخال المستخدم OAuth app" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -802,6 +827,7 @@ msgstr "الحساب" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1065,106 +1091,139 @@ msgstr "الـ API method مش موجوده." msgid "User not found." msgstr "الـ API method مش موجوده." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "لا مرفق كهذا." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "لا اسم مستعار." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "لا حجم." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "حجم غير صالح." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "أفتار" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, fuzzy, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "تستطيع رفع صورتك الشخصيه. أقصى حجم للملف هو 2 م.ب." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "يوزر من-غير پروفايل زيّه." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "إعدادات الأفتار" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "الأصلي" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "عاين" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "احذف" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "ارفع" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 #, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "مجموعات" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 #, fuzzy msgid "No file uploaded." msgstr "لا ملف شخصى مُحدّد." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "" -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "رُفع الأفتار." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "فشل تحديث الأفتار." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "حُذف الأفتار." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "لقد منعت مسبقا هذا المستخدم." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "امنع المستخدم" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1177,7 +1236,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1186,7 +1245,7 @@ msgstr "ملاحظة" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "لا تمنع هذا المستخدم" @@ -1196,7 +1255,7 @@ msgstr "لا تمنع هذا المستخدم" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 #, fuzzy @@ -1206,92 +1265,113 @@ msgstr "نعم" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "امنع هذا المستخدم" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "فشل حفظ معلومات المنع." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "لا مجموعه كهذه." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, fuzzy, php-format msgid "%s blocked profiles" msgstr "%1$s فايلات معمول ليها بلوك, الصفحه %2$d" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s فايلات معمول ليها بلوك, الصفحه %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 #, fuzzy msgid "A list of the users blocked from joining this group." msgstr "قائمه بمستخدمى هذه المجموعه." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "ألغ منع المستخدم من المجموعة" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "ألغِ المنع" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "ألغِ منع هذا المستخدم" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, fuzzy, php-format msgid "Post to %s" msgstr "مجموعات %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "لا رمز تأكيد." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "لم يوجد رمز التأكيد." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "رمز التأكيد ليس لك!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "" -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 #, fuzzy msgid "That address has already been confirmed." msgstr "هذا البريد الإلكترونى ملك مستخدم آخر بالفعل." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1299,7 +1379,7 @@ msgstr "هذا البريد الإلكترونى ملك مستخدم آخر با #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1307,27 +1387,32 @@ msgstr "هذا البريد الإلكترونى ملك مستخدم آخر با msgid "Couldn't update user." msgstr "تعذّر تحديث المستخدم." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." msgstr "تعذّر حذف تأكيد البريد الإلكترونى." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "اكد العنوان" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "" -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "محادثة" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "الإشعارات" @@ -1436,11 +1521,13 @@ msgstr "لا تحذف هذا الإشعار" msgid "Delete this group" msgstr "احذف هذا المستخدم" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1745,49 +1832,49 @@ msgstr "الSource URL مش مظبوط." msgid "Could not update application." msgstr "ما نفعش تحديث الapplication." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "عدّل مجموعه %s" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "يجب أن تكون والجًا لتنشئ مجموعه." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "لازم تكون ادارى علشان تعدّل الجروپ." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "استخدم هذا النموذج لتعديل المجموعه." -#: actions/editgroup.php:205 -#, fuzzy, php-format -msgid "Description is too long (max %d chars)." -msgstr "المنظمه طويله جدا (اكتر حاجه %d رمز)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "كنيه غير صالحة: \"%s\"" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "تعذر تحديث المجموعه." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "تعذّر إنشاء الكنى." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "حُفظت الخيارات." @@ -1982,6 +2069,12 @@ msgstr "لا رمز تأكيد." msgid "That is the wrong email address." msgstr "هذا عنوان محادثه فوريه خاطئ." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "تعذّر حذف تأكيد البريد الإلكترونى." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2166,19 +2259,23 @@ msgstr "لا يمكنك إسكات المستخدمين على هذا الموق msgid "User already has this role." msgstr "المستخدم مسكت من قبل." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "لا ملف شخصى مُحدّد." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "لا ملف شخصى بهذه الهويه." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "لا مجموعه مُحدّده." @@ -2260,6 +2357,15 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "تستطيع رفع صورتك الشخصيه. أقصى حجم للملف هو 2 م.ب." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "ارفع" + +#: actions/grouplogo.php:289 +#, fuzzy +msgid "Crop" +msgstr "مجموعات" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" @@ -2392,15 +2498,18 @@ msgid "" "action.newgroup%%) yourself!" msgstr "" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "" -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "المستخدم ليس ممنوعًا من المجموعه." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "خطأ أثناء منع الحجب." @@ -2968,10 +3077,12 @@ msgstr "المنظمه طويله جدا (اكتر حاجه 255 رمز)." msgid "Could not create application." msgstr "مش ممكن إنشاء الapplication." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "مجموعه جديدة" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "استخدم هذا النموذج لإنشاء مجموعه جديده." @@ -3662,8 +3773,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "الاسم الكامل" @@ -3706,8 +3818,9 @@ msgid "Bio" msgstr "السيرة" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4399,7 +4512,8 @@ msgstr "المنظمه" msgid "Description" msgstr "الوصف" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "إحصاءات" @@ -4418,6 +4532,11 @@ msgstr "OAuth applications" msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "احذف" + #: actions/showapplication.php:261 #, fuzzy msgid "Application info" @@ -4508,78 +4627,107 @@ msgstr "" msgid "This is a way to share what you like." msgstr "إنها إحدى وسائل مشاركه ما تحب." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "مجموعه %s" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "%1$s اعضاء الجروپ, صفحه %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "ملف المجموعه الشخصي" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "مسار" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "ملاحظة" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "الكنى" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 #, fuzzy msgid "Group actions" msgstr "تصرفات المستخدم" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "مجموعه %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "الأعضاء" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(لا شيء)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "جميع الأعضاء" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "أنشئ" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "الأعضاء" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4593,7 +4741,10 @@ msgstr "" "الآن](%%action.register%%) لتشارك اشعاراتك مع أصدقائك وعائلتك وزملائك! " "([اقرأ المزيد](%%doc.help%%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4604,24 +4755,31 @@ msgstr "" "هنا %%site.name%%، خدمه [التدوين المُصغّر](http://en.wikipedia.org/wiki/Micro-" "blogging) المبنيه على البرنامج الحر [StatusNet](http://status.net/)." -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "الإداريون" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "لا رساله كهذه." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "يحق للمُرسل والمستلم فقط قراءه هذه الرساله." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, fuzzy, php-format msgid "Message to %1$s on %2$s" msgstr "أهلا بكم فى %1$s يا @%2$s!" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, fuzzy, php-format msgid "Message from %1$s on %2$s" msgstr "نتايج التدوير لـ\"%1$s\" على %2$s" @@ -5071,13 +5229,15 @@ msgstr "" msgid "Save snapshot settings" msgstr "اذف إعدادت الموقع" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 #, fuzzy msgid "You are not subscribed to that profile." msgstr "لست مُشتركًا بأى أحد." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "تعذّر حفظ الاشتراك." @@ -5854,12 +6014,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "أهلا بكم فى %1$s يا @%2$s!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "" #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -7032,7 +7192,8 @@ msgstr "أتوم" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -7192,41 +7353,71 @@ msgstr "" msgid "Unsupported image file format." msgstr "نسق غير مدعوم." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "هذا الملف كبير جدًا. إن أقصى حجم للملفات هو %s." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 #, fuzzy msgid "Partial upload." msgstr "رُفع الأفتار." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "" -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "" -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 #, fuzzy msgid "Lost our file." msgstr "لا ملف كهذا." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "نوع ملف غير معروف" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "ميجابايت" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "ميجابايت" +msgstr[1] "ميجابايت" +msgstr[2] "ميجابايت" +msgstr[3] "ميجابايت" +msgstr[4] "ميجابايت" +msgstr[5] "ميجابايت" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "كيلوبايت" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "كيلوبايت" +msgstr[1] "كيلوبايت" +msgstr[2] "كيلوبايت" +msgstr[3] "كيلوبايت" +msgstr[4] "كيلوبايت" +msgstr[5] "كيلوبايت" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" #: lib/jabber.php:387 #, php-format @@ -8017,6 +8208,13 @@ msgstr "خطأ أثناء منع الحجب." msgid "Top posters" msgstr "أعلى المرسلين" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "ألغِ المنع" + #: lib/unsandboxform.php:69 #, fuzzy msgid "Unsandbox" @@ -8220,3 +8418,7 @@ msgstr "ما فيش ID متحدد لليوزر." #, php-format msgid "%d entries in backup." msgstr "" + +#, fuzzy +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "المنظمه طويله جدا (اكتر حاجه %d رمز)." diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 1be9f60d0a..78ce578d22 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:08:46+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:19:53+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -116,6 +116,7 @@ msgstr "Няма такака страница." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -128,7 +129,7 @@ msgstr "Няма такака страница." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -298,11 +299,12 @@ msgstr "Грешка при обновяване на потребителя." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -317,7 +319,7 @@ msgstr "Грешка при запазване на профила." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -496,9 +498,11 @@ msgstr "Целевият потребител не беше открит." msgid "Could not find target user." msgstr "Целевият потребител не беше открит." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" @@ -506,35 +510,43 @@ msgstr "" "между тях." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Опитайте друг псевдоним, този вече е зает." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Неправилен псевдоним." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Адресът на личната страница не е правилен URL." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -543,10 +555,11 @@ msgstr "Пълното име е твърде дълго (макс. 255 знак #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -554,9 +567,11 @@ msgstr[0] "Описанието е твърде дълго (до %d символ msgstr[1] "Описанието е твърде дълго (до %d символа)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -564,7 +579,12 @@ msgstr "Името на местоположението е твърде дъл #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -580,15 +600,19 @@ msgstr "Неправилен псевдоним: \"%s\"" #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Псевдонимът \"%s\" вече е зает. Опитайте друг." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "" @@ -696,18 +720,18 @@ msgid "Request token already authorized." msgstr "Не сте абонирани за никого." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -726,12 +750,13 @@ msgid "Database error inserting oauth_token_association." msgstr "Грешка в базата от данни — отговор при вмъкването: %s" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -780,6 +805,7 @@ msgstr "Сметка" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1029,105 +1055,139 @@ msgstr "Методът в API все още се разработва." msgid "User not found." msgstr "Не е открит методът в API." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "Няма прикачени файлове." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Няма псевдоним." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Няма размер." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Неправилен размер." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Аватар" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" "Можете да качите личен аватар тук. Максималната големина на файла е %s." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Потребителят няма профил." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Настройки за аватар" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Оригинал" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Преглед" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Изтриване" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Качване" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Изрязване" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "Няма качен файл." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "Изберете квадратна област от изображението за аватар" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "" -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Аватарът е обновен." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Неуспешно обновяване на аватара." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "Аватарът е изтрит." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "Вече сте блокирали този потребител." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Блокиране на потребителя" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1140,7 +1200,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1149,7 +1209,7 @@ msgstr "Не" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Да не се блокира този потребител" @@ -1159,7 +1219,7 @@ msgstr "Да не се блокира този потребител" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1168,91 +1228,112 @@ msgstr "Да" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Блокиране на потребителя" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "Грешка при записване данните за блокирането." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "Няма такава група" -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "Блокирани за %s" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s и приятели, страница %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 #, fuzzy msgid "A list of the users blocked from joining this group." msgstr "Списък с потребителите в тази група." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Разблокиране на потребителя от групата" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Разблокиране" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Разблокиране на този потребител" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "групи в %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Няма код за потвърждение." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Кодът за потвърждение не е открит." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "Този код за потвърждение не е за вас!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "Неразпознат вид адрес %s" -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "Този адрес е вече потвърден." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1260,7 +1341,7 @@ msgstr "Този адрес е вече потвърден." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1268,27 +1349,32 @@ msgstr "Този адрес е вече потвърден." msgid "Couldn't update user." msgstr "Грешка при обновяване на потребителя." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." msgstr "Грешка при изтриване потвърждението по е-поща." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Потвърждаване на адрес" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Адресът \"%s\" е потвърден за сметката ви." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Разговор" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Бележки" @@ -1394,11 +1480,13 @@ msgstr "Да не се изтрива бележката" msgid "Delete this group" msgstr "Изтриване на този потребител" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1713,51 +1801,51 @@ msgstr "" msgid "Could not update application." msgstr "Грешка при обновяване на групата." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Редактиране на групата %s" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "За да създавате група, трябва да сте влезли." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "За да редактирате група, трябва да сте влезли." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 #, fuzzy msgid "Use this form to edit the group." msgstr "Използвайте тази бланка за създаване на нова група." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Описанието е твърде дълго (до %d символа)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Неправилен псевдоним: \"%s\"" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Грешка при обновяване на групата." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 #, fuzzy msgid "Could not create aliases." msgstr "Грешка при отбелязване като любима." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Настройките са запазени." @@ -1952,6 +2040,12 @@ msgstr "Няма потвърждения, очакващи да бъдат от msgid "That is the wrong email address." msgstr "Грешен IM адрес." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Грешка при изтриване потвърждението по е-поща." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2132,19 +2226,23 @@ msgstr "Не можете да заглушавате потребители н msgid "User already has this role." msgstr "Потребителят вече е заглушен." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "Не е указан профил." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "Не е открит профил с такъв идентификатор." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "Не е указана група." @@ -2228,6 +2326,14 @@ msgid "" msgstr "" "Можете да качите личен аватар тук. Максималната големина на файла е %s." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Качване" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Изрязване" + #: actions/grouplogo.php:365 #, fuzzy msgid "Pick a square area of the image to be the logo." @@ -2363,16 +2469,19 @@ msgid "" "action.newgroup%%) yourself!" msgstr "" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 #, fuzzy msgid "Only an admin can unblock group members." msgstr "Само администратор може да блокира членове от групата." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "Потребителят вече е блокиран за групата." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Грешка при повтаряне на бележката." @@ -2969,10 +3078,12 @@ msgstr "Името на организацията е твърде дълго ( msgid "Could not create application." msgstr "Грешка при отбелязване като любима." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Нова група" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Използвайте тази бланка за създаване на нова група." @@ -3665,8 +3776,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "От 1 до 64 малки букви или цифри, без пунктоация и интервали" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Пълно име" @@ -3706,8 +3818,9 @@ msgid "Bio" msgstr "За мен" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4411,7 +4524,8 @@ msgstr "Организация" msgid "Description" msgstr "Описание" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Статистики" @@ -4430,6 +4544,11 @@ msgstr "Данни за приложението" msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Изтриване" + #: actions/showapplication.php:261 msgid "Application info" msgstr "Данни за приложението" @@ -4515,78 +4634,107 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Така можете да споделите какво харесвате." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "Група %s" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "%1$s, страница %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Профил на групата" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Бележка" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "Псевдоними" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 #, fuzzy msgid "Group actions" msgstr "Потребителски действия" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Емисия с бележки на %s (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Емисия с бележки на %s (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Емисия с бележки на %s (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "Изходяща кутия за %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Членове" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Без)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Всички членове" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Създадена на" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Членове" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4596,7 +4744,10 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4605,24 +4756,31 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Администратори" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "Няма такова съобщение" -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "Само подателят и получателят могат да четат това съобщение." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Съобщение до %1$s в %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Съобщение от %1$s в %2$s" @@ -5061,12 +5219,14 @@ msgstr "" msgid "Save snapshot settings" msgstr "Запазване настройките на сайта" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "Не сте абонирани за този профил" +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "Грешка при добавяне на нов абонамент." @@ -5867,12 +6027,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Добре дошли в %1$s, @%2$s!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "" #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -7024,7 +7184,8 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -7183,39 +7344,57 @@ msgstr "Страницата не е достъпна във вида медия msgid "Unsupported image file format." msgstr "Форматът на файла с изображението не се поддържа." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, fuzzy, php-format msgid "That file is too big. The maximum file size is %s." msgstr "Може да качите лого за групата ви." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Частично качване на файла." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Системна грешка при качване на файл." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "Файлът не е изображение или е повреден." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Няма такъв файл." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Неподдържан вид файл" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "MB" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "MB" +msgstr[1] "MB" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "kB" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "kB" +msgstr[1] "kB" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" #: lib/jabber.php:387 #, php-format @@ -8014,6 +8193,13 @@ msgstr "Грешка при изпращане на прякото съобще msgid "Top posters" msgstr "Най-често пишещи" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Разблокиране" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "" @@ -8201,3 +8387,6 @@ msgstr "Не е указана група." #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "Описанието е твърде дълго (до %d символа)." diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 9af1591ac6..93e5c729ac 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:08:47+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:19:55+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -117,6 +117,7 @@ msgstr "N'eus ket eus ar bajenn-se." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -129,7 +130,7 @@ msgstr "N'eus ket eus ar bajenn-se." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -303,11 +304,12 @@ msgstr "Diposubl eo hizivaat an implijer." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -322,7 +324,7 @@ msgstr "Diposubl eo enrollañ ar profil." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -500,44 +502,54 @@ msgstr "Diposubl eo termeniñ an implijer mammenn." msgid "Could not find target user." msgstr "Diposubl eo kavout an implijer pal." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 #, fuzzy msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "1 da 64 lizherenn vihan pe sifr, hep poentaouiñ nag esaouenn" #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Implijet eo dija al lesanv-se. Klaskit unan all." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "N'eo ket ul lesanv mat." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "N'eo ket chomlec'h al lec'hienn personel un URL reizh." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -546,10 +558,11 @@ msgstr "Re hir eo an anv klok (255 arouezenn d'ar muiañ)." #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -557,9 +570,11 @@ msgstr[0] "Re hir eo an deskrivadur (%d arouezenn d'ar muiañ)." msgstr[1] "Re hir eo an deskrivadur (%d arouezenn d'ar muiañ)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -567,7 +582,12 @@ msgstr "Re hir eo al lec'hiadur (255 arouezenn d'ar muiañ)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, fuzzy, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -583,15 +603,19 @@ msgstr "Alias fall : \"%s\"." #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Implijet e vez an alias \"%s\" dija. Klaskit gant unan all." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "Ne c'hell ket an alias bezañ ar memes hini eget al lesanv." @@ -697,18 +721,18 @@ msgid "Request token already authorized." msgstr "N'oc'h ket aotreet." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -727,12 +751,13 @@ msgid "Database error inserting oauth_token_association." msgstr "Ur fazi 'zo bet en ur ensoc'hañ an avatar" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -781,6 +806,7 @@ msgstr "Kont" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1032,104 +1058,138 @@ msgstr "Hentenn API war sevel." msgid "User not found." msgstr "N'eo ket bet kavet an hentenn API !" +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "N'eo ket bet kavet ar restr stag." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Lesanv ebet." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Ment ebet." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Ment direizh." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Implijer hep profil klotus." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Arventennoù an avatar" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Orin" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Rakwelet" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Diverkañ" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Enporzhiañ" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Adframmañ" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "N'eus bet enporzhiet restr ebet." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "Diuzit ur zonenn gant ur stumm karrez evit tremeniñ ho avatar" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Kollet eo bet roadennoù." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Hizivaet eo bet an avatar." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Ur gudenn 'zo bet e-pad hizivadenn an avatar." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "Dilammet eo bet an Avatar." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "Stanket ho peus dija an implijer-mañ." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Stankañ an implijer-mañ" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1142,7 +1202,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1151,7 +1211,7 @@ msgstr "Ket" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Arabat stankañ an implijer-mañ" @@ -1161,7 +1221,7 @@ msgstr "Arabat stankañ an implijer-mañ" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1170,91 +1230,112 @@ msgstr "Ya" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Stankañ an implijer-mañ" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "Diposubl eo enrollañ an titouroù stankañ." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "N'eus ket eus ar strollad-se." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "%s profil stanket" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s profil stanket, pajenn %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "" "Ur roll eus an implijerien evit pere eo stanket an enskrivadur d'ar strollad." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Distankañ implijer ar strollad" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Distankañ" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Distankañ an implijer-mañ" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Postañ war %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Kod kadarnaat ebet." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "N'eo ket bet kavet ar c'hod kadarnaat." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "N'eo ket ar c'hod-se evidoc'h !" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "Doare chomlec'h dianav %s." -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "Kadarnaet eo bet dija ar chomlec'h-mañ." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1262,7 +1343,7 @@ msgstr "Kadarnaet eo bet dija ar chomlec'h-mañ." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1270,27 +1351,32 @@ msgstr "Kadarnaet eo bet dija ar chomlec'h-mañ." msgid "Couldn't update user." msgstr "Diposubl eo hizivaat an implijer." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." msgstr "Diposubl eo dilemel ar postel kadarnadur." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Chomlec'h kadarnaet" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Kadarnaet eo bet ar chomlec'h \"%s\" evit ho kont." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Kaozeadenn" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Ali" @@ -1395,11 +1481,13 @@ msgstr "Arabat dilemel ar c'hemenn-mañ" msgid "Delete this group" msgstr "Diverkañ an implijer-mañ" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1697,49 +1785,49 @@ msgstr "N'eo ket mat an URL kounadur (Callback)." msgid "Could not update application." msgstr "Diposubl eo hizivaat ar poellad" -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Kemmañ ar strollad %s" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Rankout a reoc'h bezañ luget evit krouiñ ur strollad." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Rankout a reer bezañ merour evit kemmañ ar strollad." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Leunit ar furmskrid-mañ evit kemmañ dibarzhioù ar strollad." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Re hir eo an deskrivadur (%d arouezenn d'ar muiañ)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Re a aliasoù ! %d d'ar muiañ." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Alias fall : \"%s\"" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Diposubl eo hizivaat ar strollad." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Diposubl eo krouiñ an aliasoù." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Enrollet eo bet ho dibarzhioù." @@ -1931,6 +2019,12 @@ msgstr "Kadarnadenn ebet da vezañ nullet." msgid "That is the wrong email address." msgstr "N'eo ket mat ar chomlec'h postelerezh prim." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Diposubl eo dilemel ar postel kadarnadur." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2111,19 +2205,23 @@ msgstr "Ne c'helloc'h ket reiñ rolloù d'an implijerien eus al lec'hienn-mañ." msgid "User already has this role." msgstr "An implijer-mañ en deus dija ar roll-mañ." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "N'eo bet resisaet profil ebet" -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "N'eus profil ebet gant an ID-mañ." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "N'eo bet resisaet strollad ebet" @@ -2205,6 +2303,14 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Enporzhiañ" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Adframmañ" + #: actions/grouplogo.php:365 #, fuzzy msgid "Pick a square area of the image to be the logo." @@ -2344,15 +2450,18 @@ msgstr "" "Perak ne [groufec'h ket ur gont](%%action.register%%) ha bezañ an hini " "gentañ da embann un dra !" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "N'eus nemet ur merour a c'hell distankañ izili ur strollad." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "N'eo ket stanket an implijer-mañ eus ar strollad." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Ur fazi a zo bet e-pad nulladenn ar stankadenn." @@ -2912,10 +3021,12 @@ msgstr "Re hir eo an aozadur (255 arouezenn d'ar muiañ)." msgid "Could not create application." msgstr "N'eo ket posubl krouiñ ar poellad." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Strollad nevez" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Implijit ar furmskrid-mañ a-benn krouiñ ur strollad nevez." @@ -3618,8 +3729,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1 da 64 lizherenn vihan pe sifr, hep poentaouiñ nag esaouenn" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Anv klok" @@ -3659,8 +3771,9 @@ msgid "Bio" msgstr "Buhezskrid" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4357,7 +4470,8 @@ msgstr "Aozadur" msgid "Description" msgstr "Deskrivadur" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Stadegoù" @@ -4375,6 +4489,11 @@ msgstr "Obererezhioù ar poellad" msgid "Reset key & secret" msgstr "Adderaouekaat an alc'hwez hag ar sekred" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Diverkañ" + #: actions/showapplication.php:261 msgid "Application info" msgstr "Titouroù ar poelad" @@ -4460,77 +4579,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Un doare eo evit kevranañ ar pezh a blij deoc'h." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "strollad %s" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "Strollad %1$s, pajenn %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Profil ar strollad" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Notenn" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "Aliasoù" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Obererezh ar strollad" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Neudenn alioù ar strollad %s (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Neudenn alioù ar strollad %s (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Neudenn alioù ar strollad %s (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "Mignon ur mignon evit ar strollad %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Izili" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Hini ebet)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "An holl izili" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Krouet" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Izili" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4542,7 +4690,10 @@ msgstr "" "%%site.name%% a zo ur servij [micro-blogging](http://br.wikipedia.org/wiki/" "Microblog) diazezet war ar meziant frank [StatusNet](http://status.net/)." -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4553,26 +4704,33 @@ msgstr "" "%%site.name%% a zo ur servij [micro-blogging](http://br.wikipedia.org/wiki/" "Microblog) diazezet war ar meziant frank [StatusNet](http://status.net/)." -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Merourien" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "N'eus ket eus ar gemennadenn-se." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "" "Ne c'hell bezañ lennet ar gemenadenn-mañ nemet gant ar c'haser hag ar " "resever." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Kemanadenn kaset da %1$s d'an %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Kemenadenn resevet eus %1$s d'an %2$s" @@ -5013,13 +5171,15 @@ msgstr "" msgid "Save snapshot settings" msgstr "Enrollañ arventennoù al lec'hienn" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 #, fuzzy msgid "You are not subscribed to that profile." msgstr "N'hoc'h ket koumanantet da zen ebet." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 #, fuzzy msgid "Could not save subscription." msgstr "Dibosupl eo dilemel ar c'houmanant." @@ -5805,12 +5965,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Deuet mat da %1$s, @%2$s !" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "" #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -6937,7 +7097,8 @@ msgstr "Atom" msgid "FOAF" msgstr "Mignon ur mignon (FOAF)" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -7101,39 +7262,57 @@ msgstr "" msgid "Unsupported image file format." msgstr "Diembreget eo ar furmad-se." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, fuzzy, php-format msgid "That file is too big. The maximum file size is %s." msgstr "Re vras eo ar restr ! %d eo ar vent vrasañ evit ur restr." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Enporzhiadenn diglok." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "" -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "" -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Restr bet kollet." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Dizanv eo seurt ar restr" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "Mo" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "Mo" +msgstr[1] "Mo" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "Ko" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "Ko" +msgstr[1] "Ko" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" #: lib/jabber.php:387 #, php-format @@ -7933,6 +8112,13 @@ msgstr "Fazi en ur hizivaat ar profil a-bell." msgid "Top posters" msgstr "An implijerien an efedusañ" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Distankañ" + #: lib/unsandboxform.php:69 #, fuzzy msgid "Unsandbox" @@ -8121,3 +8307,9 @@ msgstr "N'eus bet diferet ID implijer ebet." #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "Re hir eo an deskrivadur (%d arouezenn d'ar muiañ)." + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "Re a aliasoù ! %d d'ar muiañ." diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 42d7976a05..78a49f197f 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -13,17 +13,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:08:48+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:19:57+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -121,6 +121,7 @@ msgstr "No existeix la pàgina." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -133,7 +134,7 @@ msgstr "No existeix la pàgina." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -313,11 +314,12 @@ msgstr "No s'ha pogut actualitzar l'usuari." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -332,7 +334,7 @@ msgstr "No s'ha pogut desar el perfil." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -510,9 +512,11 @@ msgstr "No s'ha pogut determinar l'usuari d'origen." msgid "Could not find target user." msgstr "No s'ha pogut trobar l'usuari de destinació." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" @@ -520,35 +524,43 @@ msgstr "" "espais." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Aquest sobrenom ja existeix. Prova un altre. " #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Sobrenom no vàlid." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "La pàgina personal no és un URL vàlid." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -557,10 +569,11 @@ msgstr "El vostre nom sencer és massa llarg (màx. 255 caràcters)." #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -568,9 +581,11 @@ msgstr[0] "La descripció és massa llarga (màx. %d caràcters)." msgstr[1] "La descripció és massa llarga (màx. %d caràcters)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -578,7 +593,12 @@ msgstr "La ubicació és massa llarga (màx. 255 caràcters)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, fuzzy, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -594,15 +614,19 @@ msgstr "L'àlies no és vàlid: «%s»." #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "L'àlies «%s» ja està en ús. Proveu-ne un altre." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "L'àlies no pot ser el mateix que el sobrenom." @@ -708,18 +732,18 @@ msgid "Request token already authorized." msgstr "No esteu autoritzat." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -740,12 +764,13 @@ msgid "Database error inserting oauth_token_association." msgstr "Error de la base de dades en inserir l'usuari de l'aplicació OAuth." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -800,6 +825,7 @@ msgstr "Compte" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1050,107 +1076,141 @@ msgstr "Mètode API en construcció." msgid "User not found." msgstr "No s'ha trobat el mètode API!" +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "No existeix l'adjunció." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Cap sobrenom." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Cap mida." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "La mida no és vàlida." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" "Podeu pujar el vostre avatar personal. La mida màxima del fitxer és %s." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "L'usuari que no coincideix amb cap perfil" -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Configuració de l'avatar" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Original" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Vista prèvia" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Elimina" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Puja" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Retalla" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "No s'ha carregat cap fitxer." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "" "Selecciona un quadrat de l'àrea de la imatge que vols que sigui el teu " "avatar." -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "S'ha perdut el nostre fitxer de dades." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Avatar actualitzat." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Error en actualitzar avatar." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "S'ha eliminat l'avatar." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "Ja heu blocat l'usuari." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Bloca l'usuari" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1166,7 +1226,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1175,7 +1235,7 @@ msgstr "No" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "No bloquis l'usuari" @@ -1185,7 +1245,7 @@ msgstr "No bloquis l'usuari" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1194,90 +1254,111 @@ msgstr "Sí" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Bloca aquest usuari" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "No s'ha pogut desar la informació del bloc." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "No s'ha trobat el grup." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "%s perfils blocats" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s perfils blocats, pàgina %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "Una llista d'usuaris que han estat blocats d'afegir-se a aquest grup." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Desbloca l'usuari del grup" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Desbloca" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Desbloca l'usuari" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Publica a %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Cap codi de confirmació." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Codi de confirmació no trobat. " -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "Aquest codi de confirmació no és vostre!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "Tipus d'adreça desconeguda %s." -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "Aquesta adreça ja ha estat confirmada." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1285,7 +1366,7 @@ msgstr "Aquesta adreça ja ha estat confirmada." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1293,27 +1374,32 @@ msgstr "Aquesta adreça ja ha estat confirmada." msgid "Couldn't update user." msgstr "No s'ha pogut actualitzar l'usuari." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." -msgstr "No s'ha pogut eliminar la confirmació de correu electrònic." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." +msgstr "No s'ha pogut eliminar la confirmació de MI." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Confirmeu l'adreça de correu electrònic" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "L'adreça «%s» ha estat confirmada per al vostre compte." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Conversa" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Avisos" @@ -1421,11 +1507,13 @@ msgstr "No eliminis aquest grup" msgid "Delete this group" msgstr "Elimina aquest grup" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1725,49 +1813,49 @@ msgstr "L'URL de la crida de retorn no és vàlid." msgid "Could not update application." msgstr "No s'ha pogut actualitzar l'aplicació." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Edita el grup %s" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Heu d'haver iniciat una sessió per crear un grup." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Heu de ser administrador per editar el grup." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Utilitza aquest formulari per editar el grup." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "La descripció és massa llarga (màx. %d caràcters)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Hi ha massa àlies! Màxim %d." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "L'àlies no és vàlid «%s»" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "No s'ha pogut actualitzar el grup." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "No s'han pogut crear els àlies." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Configuració guardada." @@ -1961,6 +2049,12 @@ msgstr "Cap confirmació pendent per cancel·lar." msgid "That is the wrong email address." msgstr "Aquesta l'adreça de correu electrònic incorrecta." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "No s'ha pogut eliminar la confirmació de correu electrònic." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2141,19 +2235,23 @@ msgstr "No podeu establir rols d'usuari en aquest lloc." msgid "User already has this role." msgstr "L'usuari ja té aquest rol." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "No s'ha especificat cap perfil." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "No hi ha cap perfil amb aquesta ID." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "No s'ha especificat cap grup." @@ -2239,6 +2337,14 @@ msgstr "" "Podeu pujar una imatge com a logotip del vostre grup. La mida màxima del " "fitxer és %s." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Puja" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Retalla" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Trieu una àrea quadrada de la imatge perquè en sigui el logotip." @@ -2381,15 +2487,18 @@ msgstr "" "Per què no [registreu un compte](%%action.register%%) i proveu de [crear-hi " "un grup](%%action.newgroup%%)!" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "Només un administrador pot desblocar els membres del grup." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "L'usuari no està blocat del grup." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "S'ha produït un error en eliminar el bloc." @@ -2991,10 +3100,12 @@ msgstr "El camp organització és massa llarg (màx. 255 caràcters)." msgid "Could not create application." msgstr "No s'ha pogut crear l'aplicació." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Nou grup" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Utilitza aquest formulari per crear un nou grup." @@ -3701,8 +3812,9 @@ msgstr "" "1-64 lletres en minúscula o números, sense signes de puntuació o espais" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Nom complet" @@ -3742,8 +3854,9 @@ msgid "Bio" msgstr "Biografia" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4469,7 +4582,8 @@ msgstr "Organització" msgid "Description" msgstr "Descripció" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Estadístiques" @@ -4487,6 +4601,11 @@ msgstr "Accions d'aplicació" msgid "Reset key & secret" msgstr "Reinicialitza la clau i la secreta" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Elimina" + #: actions/showapplication.php:261 msgid "Application info" msgstr "Informació de l'aplicació" @@ -4579,77 +4698,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "És una forma de compartir allò que us agrada." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "%s grup" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "grup %1$s, pàgina %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Perfil del grup" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Avisos" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "Àlies" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Accions del grup" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Canal d'avisos del grup %s (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Canal d'avisos del grup %s (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Canal d'avisos del grup %s (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "Safata de sortida per %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Membres" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Cap)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Tots els membres" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "S'ha creat" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Membres" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4665,7 +4813,10 @@ msgstr "" "%) per formar part del grup i molt més! ([Més informació...](%%%%doc.help%%%" "%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4678,24 +4829,31 @@ msgstr "" "[StatusNet](http://status.net/). Els seus membre comparteixen missatges " "curts sobre llur vida i interessos. " -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Administradors" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "No existeix el missatge." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "Només el remitent i el receptor poden llegir aquest missatge." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Missatge per a %1$s a %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Missatge de %1$s a %2$s" @@ -5145,12 +5303,14 @@ msgstr "Les instantànies s'enviaran a aquest URL" msgid "Save snapshot settings" msgstr "Desa els paràmetres de les instantànies" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "No estàs subscrit a aquest perfil." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "No s'ha pogut guardar la subscripció." @@ -5967,12 +6127,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Us donem la benvinguda a %1$s, @%2$s!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "No s'ha definit cap usuari únic per al mode d'usuari únic." #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -7146,7 +7306,8 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "Canals" @@ -7306,39 +7467,57 @@ msgstr "Aquesta pàgina no està disponible en un tipus de mèdia que acceptis." msgid "Unsupported image file format." msgstr "Format d'imatge no suportat." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "La mida del fitxer és massa gran, La mida màxima és %s." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Càrrega parcial." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Error del sistema en pujar el fitxer." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "No és una imatge o és un fitxer corrupte." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Hem perdut el nostre fitxer." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Tipus de fitxer desconegut" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "MB" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "MB" +msgstr[1] "MB" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "kB" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "kB" +msgstr[1] "kB" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" #: lib/jabber.php:387 #, php-format @@ -8237,6 +8416,13 @@ msgstr "S'ha produït un error en obrir l'arxiu del tema." msgid "Top posters" msgstr "Qui més publica" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Desbloca" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "Treu de l'entorn de proves" @@ -8418,3 +8604,9 @@ msgstr "No s'ha especificat cap usuari; s'utilitza l'usuari de reserva." #, php-format msgid "%d entries in backup." msgstr "%d entrades a la còpia de seguretat." + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "La descripció és massa llarga (màx. %d caràcters)." + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "Hi ha massa àlies! Màxim %d." diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index 8002d4eb4b..ef73741d2b 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Core to Czech (Česky) # Expored from translatewiki.net # +# Author: Brion # Author: Koo6 # Author: Kuvaly # -- @@ -10,18 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:08:50+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:19:58+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n >= 2 && n <= 4) ? 1 : " "2 );\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -117,6 +118,7 @@ msgstr "Tady žádná taková stránka není." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -129,7 +131,7 @@ msgstr "Tady žádná taková stránka není." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -308,11 +310,12 @@ msgstr "Nepodařilo se aktualizovat nastavení uživatele" #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -327,7 +330,7 @@ msgstr "Nepodařilo se uložit profil." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -507,43 +510,53 @@ msgstr "Nelze určit zdrojového uživatele." msgid "Could not find target user." msgstr "Nepodařilo se najít cílového uživatele." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Přezdívka může obsahovat pouze malá písmena a čísla a žádné mezery." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Přezdívku již někdo používá. Zkuste jinou." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Není platnou přezdívkou." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Domovská stránka není platná URL." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -552,10 +565,11 @@ msgstr "Celé jméno je moc dlouhé (maximální délka je 255 znaků)." #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -564,9 +578,11 @@ msgstr[1] "Popis je příliš dlouhý (maximálně %d znaků)." msgstr[2] "Popis je příliš dlouhý (maximálně %d znaků)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -574,7 +590,12 @@ msgstr "Umístění je příliš dlouhé (maximálně 255 znaků)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, fuzzy, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -591,15 +612,19 @@ msgstr "Neplatný alias: \"%s\"." #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias \"%s\" se již používá. Zkuste jiný." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "Alias nemůže být stejný jako přezdívka." @@ -705,18 +730,18 @@ msgid "Request token already authorized." msgstr "Nejste autorizován." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -735,12 +760,13 @@ msgid "Database error inserting oauth_token_association." msgstr "Chyba databáze při vkládání uživatele aplikace OAuth." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -795,6 +821,7 @@ msgstr "Účet" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1048,104 +1075,138 @@ msgstr "API metoda ve výstavbě." msgid "User not found." msgstr " API metoda nebyla nalezena." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "Žádná taková příloha." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Žádná přezdívka." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Žádná velikost" -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Neplatná velikost" +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Můžete nahrát váš osobní avatar. Maximální velikost souboru je %s." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Uživatel bez odpovídajícího profilu." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Nastavené Profilu" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Originál" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Náhled" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Odstranit" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Upload" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Oříznout" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "žádný soubor nebyl nahrán." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "Vyberte čtvercovou plochu obrázku, která bude váš avatar" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Ztratili jsme údaje souboru." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Obrázek nahrán" -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Nahrávání obrázku selhalo." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "Avatar smazán." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "Jabber ID již patří jinému uživateli" -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Zablokovat tohoto uživatele" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1161,7 +1222,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1170,7 +1231,7 @@ msgstr "Poznámka" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Zablokovat tohoto uživatele" @@ -1180,7 +1241,7 @@ msgstr "Zablokovat tohoto uživatele" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1189,90 +1250,111 @@ msgstr "Ano" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Zablokovat tohoto uživatele" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "Nepodařilo se uložit blokování." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "Žádný takový uživatel." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "profily blokovány skupinou %s" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "blokované profily %1$s, strana %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "Seznam uživatelů blokovaných od připojení k této skupině." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Odblokovat uživatele ze skupiny" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Odblokovat" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Odblokovat tohoto uživatele" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Poslat na %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Žádný potvrzující kód." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Potvrzující kód nebyl nalezen" -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "Tento potvrzující kód vám nepatří!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "Neznámý typ adresy %s." -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "Adresa již byla potvrzena" +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1280,7 +1362,7 @@ msgstr "Adresa již byla potvrzena" #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1288,27 +1370,32 @@ msgstr "Adresa již byla potvrzena" msgid "Couldn't update user." msgstr "Nelze aktualizovat uživatele" -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." -msgstr "Nelze smazat potvrzení emailu" +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." +msgstr "Nelze smazat potvrzení IM" -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Heslo znovu" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Adresa \"%s\" byla potvrzena pro váš účet" -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Konverzace" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Sdělení" @@ -1418,11 +1505,13 @@ msgstr "Neodstraňujte toto oznámení" msgid "Delete this group" msgstr "Odstranit tohoto uživatele" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1725,49 +1814,49 @@ msgstr "Callback URL není platný." msgid "Could not update application." msgstr "Nelze aktualizovat aplikaci." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Upravit skupinu %s" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "K vytvoření skupiny musíte být přihlášen." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "K úpravě skupiny musíte být admin." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Použijte tento formulář k úpravám skupiny." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Popis je příliš dlouhý (maximálně %d znaků)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Příliš mnoho aliasů! Maximálně %d." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Neplatný alias: \"%s\"" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Nelze aktualizovat skupinu." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Nelze vytvořit aliasy." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Nastavení uloženo." @@ -1959,6 +2048,12 @@ msgstr "Žádné potvrzení ke zrušení." msgid "That is the wrong email address." msgstr "Toto je špatná e-mailová adresa." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Nelze smazat potvrzení emailu" + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2139,19 +2234,23 @@ msgstr "Nemůžete dávat uživatelské role na této stránce." msgid "User already has this role." msgstr "Uživatel již tuto roli má." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "Nebyl vybrán profil." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "Neexistuje profil s tímto ID." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "Nebyla vybrána skupina." @@ -2237,6 +2336,14 @@ msgstr "" "Můžete nahrát obrázek loga pro vaši skupinu. Maximální velikost souboru je %" "s." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Upload" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Oříznout" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Vyberte čtvercovou oblast obrázku, která bude vaše logo." @@ -2379,15 +2486,18 @@ msgstr "" "Proč si ne[zaregistrovat účet](%% action.register%%) a ne[vytvořit skupinu](%" "%action.newgroup%%) sami!" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "Pouze admin může odblokovat členy skupiny." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "Uživatel není blokován ze skupiny." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Chyba při odstraňování bloku." @@ -2979,10 +3089,12 @@ msgstr "Organizace je příliš dlouhá (max 255 znaků)." msgid "Could not create application." msgstr "Nelze vytvořit aplikaci." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Nová skupina" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Použijte tento formulář k vytvoření nové skupiny." @@ -3686,8 +3798,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 znaků nebo čísel, bez teček, čárek a mezer" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Celé jméno" @@ -3728,8 +3841,9 @@ msgid "Bio" msgstr "O mě" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4444,7 +4558,8 @@ msgstr "Organizace" msgid "Description" msgstr "Popis" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Statistiky" @@ -4463,6 +4578,11 @@ msgstr "Akce aplikace" msgid "Reset key & secret" msgstr "Resetovat klíč a tajemství" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Odstranit" + #: actions/showapplication.php:261 msgid "Application info" msgstr "Info o aplikaci" @@ -4554,77 +4674,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Toto je způsob, jak sdílet to, co se vám líbí." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "skupina %s" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "skupina %1$s, str. %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Profil skupiny" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Poznámka" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "Aliasy" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Akce skupiny" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Feed sdělení skupiny %s (RSS 1.0" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Feed sdělení skupiny %s (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Feed sdělení skupiny %s (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "FOAF pro skupinu %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Členové" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(nic)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Všichni členové" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Vytvořeno" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Členové" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4633,13 +4782,16 @@ msgid "" "their life and interests. [Join now](%%%%action.register%%%%) to become part " "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -"**%s** je skupina uživatelů na %%site.name%%, [mikro-blogovací](http://drbz." -"cz/i/napoveda-faq#mikroblog) službě založené na Free Software nástroji " +"**%s** je skupina uživatelů na %%%%site.name%%%%, [mikro-blogovací](http://" +"drbz.cz/i/napoveda-faq#mikroblog) službě založené na Free Software nástroji " "[StatusNet](http://status.net/). Její členové sdílejí krátké zprávy o svém " -"životě a zájmech. [Zaregistrujte se](%%action.register%%) a staňte se členem " -"této skupiny a mnoha dalších! ([Čtěte více](%%doc.help%%))" +"životě a zájmech. [Zaregistrujte se](%%%%action.register%%%%) a staňte se " +"členem této skupiny a mnoha dalších! ([Čtěte více](%%%%doc.help%%%%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4647,29 +4799,36 @@ msgid "" "[StatusNet](http://status.net/) tool. Its members share short messages about " "their life and interests. " msgstr "" -"**%s** je skupina uživatelů na %%site.name%%, [mikro-blogovací](http://drbz." -"cz/i/napoveda-faq#mikroblog) službě založené na Free Software nástroji " +"**%s** je skupina uživatelů na %%%%site.name%%%%, [mikro-blogovací](http://" +"drbz.cz/i/napoveda-faq#mikroblog) službě založené na Free Software nástroji " "[StatusNet](http://status.net/). Její členové sdílejí krátké zprávy o svém " "životě a zájmech. " -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Adminové" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "Žádné takové zprávy." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "Pouze odesílatel a příjemce může přečíst tuto zprávu." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Zpráva pro %1$s na %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Zpráva od %1$s na %2$s" @@ -4743,10 +4902,10 @@ msgid "" "[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -"**%s** má účet na %%site.name%%, [mikro-blogovací](http://drbz.cz/i/napoveda-" -"faq#mikroblog) službě založené na Free Software nástroji [StatusNet](http://" -"status.net/). [Zaregistrujte se](%%action.register%%) a sledujte oznámení od " -"**%s**a mnoha dalších! ([Čtěte více](%%doc.help%%))" +"**%s** má účet na %%%%site.name%%%%, [mikro-blogovací](http://drbz.cz/i/" +"napoveda-faq#mikroblog) službě založené na Free Software nástroji [StatusNet]" +"(http://status.net/). [Zaregistrujte se](%%%%action.register%%%%) a sledujte " +"oznámení od **%s**a mnoha dalších! ([Čtěte více](%%%%doc.help%%%%))" #: actions/showstream.php:248 #, php-format @@ -4755,9 +4914,9 @@ msgid "" "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. " msgstr "" -"**%s** má účet na %%site.name%%, [mikro-blogovací](http://drbz.cz/i/napoveda-" -"faq#mikroblog) službě založené na Free Software nástroji [StatusNet](http://" -"status.net/). " +"**%s** má účet na %%%%site.name%%%%, [mikro-blogovací](http://drbz.cz/i/" +"napoveda-faq#mikroblog) službě založené na Free Software nástroji [StatusNet]" +"(http://status.net/). " #: actions/showstream.php:305 #, php-format @@ -5109,12 +5268,14 @@ msgstr "Na tuto adresu budou poslány snímky" msgid "Save snapshot settings" msgstr "Uložit nastavení snímkování" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "Nejste přihlášen k tomuto profilu." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "Nelze uložit odebírání" @@ -5924,12 +6085,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Vítejte na %1$s, @%2$s!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "Nenastaven uživatel pro jednouživatelský mód" #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -7096,7 +7257,8 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -7256,39 +7418,60 @@ msgstr "Tato stránka není k dispozici v typu média která přijímáte." msgid "Unsupported image file format." msgstr "Nepodporovaný formát obrázku." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "Ten soubor je příliš velký. Maximální velikost souboru je %s." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Částečné náhrání." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Chyba systému při nahrávání souboru" -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "Není obrázkem, nebo jde o poškozený soubor." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Ztratili jsme náš soubor." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Neznámý typ souboru" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "MB" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "MB" +msgstr[1] "MB" +msgstr[2] "MB" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "kB" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "kB" +msgstr[1] "kB" +msgstr[2] "kB" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/jabber.php:387 #, php-format @@ -8183,6 +8366,13 @@ msgstr "Chyba při otevírání archivu tématu." msgid "Top posters" msgstr "Nejlepší pisálci" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Odblokovat" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "Odsandboxovat" @@ -8368,3 +8558,9 @@ msgstr "Nebylo zadáno uživatelské ID." #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "Popis je příliš dlouhý (maximálně %d znaků)." + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "Příliš mnoho aliasů! Maximálně %d." diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 641c8e8b5d..2439f18265 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -19,17 +19,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:08:52+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:00+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -126,6 +126,7 @@ msgstr "Seite nicht vorhanden" #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -138,7 +139,7 @@ msgstr "Seite nicht vorhanden" #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -318,11 +319,12 @@ msgstr "Konnte Benutzerdaten nicht aktualisieren." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -337,7 +339,7 @@ msgstr "Konnte Profil nicht speichern." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -518,9 +520,11 @@ msgstr "Konnte öffentlichen Stream nicht abrufen." msgid "Could not find target user." msgstr "Konnte keine Statusmeldungen finden." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" @@ -528,36 +532,44 @@ msgstr "" "Leerzeichen sind nicht erlaubt." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Benutzername wird bereits verwendet. Suche dir einen anderen aus." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Ungültiger Benutzername." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "" "Homepage ist keine gültige URL. URLs müssen ein Präfix wie http enthalten." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 msgid "Full name is too long (maximum 255 characters)." msgstr "Der bürgerliche Name ist zu lang (maximal 255 Zeichen)." @@ -565,10 +577,11 @@ msgstr "Der bürgerliche Name ist zu lang (maximal 255 Zeichen)." #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -576,16 +589,23 @@ msgstr[0] "Die Beschreibung ist zu lang (max. %d Zeichen)." msgstr[1] "Die Beschreibung ist zu lang (max. %d Zeichen)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 msgid "Location is too long (maximum 255 characters)." msgstr "Der eingegebene Aufenthaltsort ist zu lang (maximal 255 Zeichen)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -601,15 +621,19 @@ msgstr "Ungültiges Alias: „%s“" #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Benutzername „%s“ wird bereits verwendet. Suche dir einen anderen aus." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "Alias kann nicht das gleiche wie der Spitzname sein." @@ -713,18 +737,18 @@ msgid "Request token already authorized." msgstr "Du bist nicht autorisiert." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -743,12 +767,13 @@ msgid "Database error inserting oauth_token_association." msgstr "Datenbankfehler beim Einfügen des OAuth-Programm-Benutzers." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -802,6 +827,7 @@ msgstr "Profil" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1061,106 +1087,140 @@ msgstr "API-Methode im Aufbau." msgid "User not found." msgstr "API-Methode nicht gefunden." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "Kein solcher Anhang." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Kein Benutzername." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Keine Größe." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Ungültige Größe." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" "Du kannst dein persönliches Avatar hochladen. Die maximale Dateigröße ist %s." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Benutzer ohne passendes Profil" -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Avatar-Einstellungen" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Original" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Vorschau" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Löschen" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Hochladen" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Zuschneiden" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "Keine Datei hoch geladen." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "" "Wähle eine quadratische Fläche aus dem Bild, um dein Avatar zu speichern" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Daten verloren." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Avatar aktualisiert." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Aktualisierung des Avatars fehlgeschlagen." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "Avatar gelöscht." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "Du hast diesen Benutzer bereits blockiert." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Benutzer blockieren" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1176,7 +1236,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1185,7 +1245,7 @@ msgstr "Nein" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Diesen Benutzer freigeben" @@ -1195,7 +1255,7 @@ msgstr "Diesen Benutzer freigeben" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1204,90 +1264,111 @@ msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Diesen Benutzer blockieren" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "Konnte Blockierungsdaten nicht speichern." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "Keine derartige Gruppe." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "%s blockierte Benutzerprofile" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s blockierte Benutzerprofile, Seite %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "Liste der blockierten Benutzer in dieser Gruppe." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Blockierung des Benutzers für die Gruppe aufheben." -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Freigeben" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Diesen Benutzer freigeben" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Versenden an %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Kein Bestätigungs-Code." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Bestätigungscode nicht gefunden." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "Dieser Bestätigungscode ist nicht für dich!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "Nicht erkannter Adresstyp %s" -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "Diese Adresse wurde bereits bestätigt." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1295,7 +1376,7 @@ msgstr "Diese Adresse wurde bereits bestätigt." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1303,27 +1384,32 @@ msgstr "Diese Adresse wurde bereits bestätigt." msgid "Couldn't update user." msgstr "Konnte Benutzerdaten nicht aktualisieren." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." -msgstr "Konnte E-Mail-Bestätigung nicht löschen." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." +msgstr "Konnte die IM-Bestätigung nicht löschen." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Adresse bestätigen" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Die Adresse „%s“ wurde für dein Konto bestätigt." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Unterhaltung" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Nachrichten" @@ -1428,11 +1514,13 @@ msgstr "Diese Gruppe nicht löschen" msgid "Delete this group" msgstr "Diese Gruppe löschen" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1733,49 +1821,49 @@ msgstr "Antwort-URL ist nicht gültig" msgid "Could not update application." msgstr "Konnte Programm nicht aktualisieren." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Gruppe %s bearbeiten" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Du musst angemeldet sein, um eine Gruppe zu erstellen." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Du musst ein Admin sein, um die Gruppe zu bearbeiten" -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Benutze dieses Formular, um die Gruppe zu bearbeiten." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Die Beschreibung ist zu lang (max. %d Zeichen)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Zu viele Pseudonyme! Maximale Anzahl ist %d." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Ungültiges Stichwort: „%s“" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Konnte Gruppe nicht aktualisieren." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Konnte keinen Favoriten erstellen." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Einstellungen gespeichert." @@ -1971,6 +2059,12 @@ msgstr "Keine ausstehende Bestätigung, die abgebrochen werden kann." msgid "That is the wrong email address." msgstr "Dies ist die falsche E-Mail Adresse" +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Konnte E-Mail-Bestätigung nicht löschen." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2151,19 +2245,23 @@ msgstr "Auf dieser Seite können keine Benutzerrollen gewährt werden." msgid "User already has this role." msgstr "Benutzer hat bereits diese Aufgabe" +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "Kein Profil angegeben." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "Kein Benutzer-Profil mit dieser ID." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "Keine Gruppe angegeben" @@ -2251,6 +2349,14 @@ msgstr "" "Du kannst ein Logo für deine Gruppe hochladen. Die maximale Dateigröße ist %" "s." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Hochladen" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Zuschneiden" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Wähle eine quadratische Fläche aus dem Bild, um das Logo zu speichern." @@ -2394,15 +2500,18 @@ msgstr "" "Warum [registrierst du nicht einen Account](%%action.register%%) und [legst " "diese Gruppe selbst an](%%action.newgroup%%)?" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "Nur Admins können Blockierungen von Gruppenmitglieder aufheben." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "Dieser Benutzer ist nicht von der Gruppe blockiert." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Fehler beim Freigeben des Benutzers." @@ -2997,10 +3106,12 @@ msgstr "Die angegebene Organisation ist zu lang (maximal 255 Zeichen)." msgid "Could not create application." msgstr "Konnte das Programm nicht erstellen." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Neue Gruppe" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Benutze dieses Formular, um eine neue Gruppe zu erstellen." @@ -3696,8 +3807,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 Kleinbuchstaben oder Zahlen, keine Satz- oder Leerzeichen." #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Bürgerlicher Name" @@ -3738,8 +3850,9 @@ msgid "Bio" msgstr "Biografie" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4467,7 +4580,8 @@ msgstr "Organisation" msgid "Description" msgstr "Beschreibung" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Statistik" @@ -4485,6 +4599,11 @@ msgstr "Programmaktionen" msgid "Reset key & secret" msgstr "Schlüssel zurücksetzen" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Löschen" + #: actions/showapplication.php:261 msgid "Application info" msgstr "Programminformation" @@ -4578,77 +4697,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Dies ist ein Weg, Dinge zu teilen, die dir gefallen." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "%s-Gruppe" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "%1$s Gruppe, Seite %d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Gruppenprofil" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Nachricht" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "Pseudonyme" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Gruppenaktionen" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Nachrichtenfeed der Gruppe %s (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Nachrichtenfeed der Gruppe %s (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Nachrichtenfeed der Gruppe %s (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "Postausgang von %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Mitglieder" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Kein)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Alle Mitglieder" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Erstellt" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Mitglieder" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4663,7 +4811,10 @@ msgstr "" "und werde Teil der Gruppe und vielen anderen! ([Mehr Informationen](%%%%doc." "help%%%%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4676,24 +4827,31 @@ msgstr "" "Software [StatusNet](http://status.net/). Seine Mitglieder erstellen kurze " "Nachrichten über ihr Leben und Interessen. " -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Admins" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "Keine derartige Nachricht." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "Nur der Absender und der Empfänger können diese Nachricht lesen." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Nachricht an %1$s auf %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Nachricht von %1$s auf %2$s" @@ -5143,12 +5301,14 @@ msgstr "An diese Adresse werden Snapshots gesendet" msgid "Save snapshot settings" msgstr "Snapshot-Einstellungen speichern" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "Du hast dieses Profil nicht abonniert." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "Konnte Abonnement nicht erstellen." @@ -5967,12 +6127,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Herzlich willkommen bei %1$s, @%2$s!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "Kein einzelner Benutzer für den Ein-Benutzer-Modus ausgewählt." #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -7137,7 +7297,8 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "Feeds" @@ -7297,39 +7458,57 @@ msgstr "Dies Seite liegt in keinem von dir akzeptierten Mediatype vor." msgid "Unsupported image file format." msgstr "Bildformat wird nicht unterstützt." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "Du kannst ein Logo für deine Gruppe hochladen." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Unvollständiges Hochladen." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Systemfehler beim Hochladen der Datei." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "Kein Bild oder defekte Datei." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Daten verloren." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Unbekannter Dateityp" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "MB" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "MB" +msgstr[1] "MB" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "kB" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "kB" +msgstr[1] "kB" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" #: lib/jabber.php:387 #, php-format @@ -8227,6 +8406,13 @@ msgstr "Fehler beim Öffnen des Theme-Archives." msgid "Top posters" msgstr "Top-Schreiber" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Freigeben" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "Von Spielwiese freigeben" @@ -8408,3 +8594,9 @@ msgstr "Keine Benutzer-ID angegeben" #, php-format msgid "%d entries in backup." msgstr "%d Einträge im Backup." + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "Die Beschreibung ist zu lang (max. %d Zeichen)." + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "Zu viele Pseudonyme! Maximale Anzahl ist %d." diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index d5813c0338..d85e43536e 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -13,17 +13,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:08:54+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:02+0000\n" "Language-Team: British English \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -119,6 +119,7 @@ msgstr "No such page." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -131,7 +132,7 @@ msgstr "No such page." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -310,11 +311,12 @@ msgstr "Could not update user." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -329,7 +331,7 @@ msgstr "Could not save profile." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -505,43 +507,53 @@ msgstr "Could not determine source user." msgid "Could not find target user." msgstr "Could not find target user." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Nickname must have only lowercase letters and numbers, and no spaces." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Nickname already in use. Try another one." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Not a valid nickname." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Homepage is not a valid URL." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -550,10 +562,11 @@ msgstr "Full name is too long (max 255 chars)." #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -561,9 +574,11 @@ msgstr[0] "Description is too long (max %d chars)" msgstr[1] "Description is too long (max %d chars)" #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -571,7 +586,12 @@ msgstr "Location is too long (max 255 chars)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, fuzzy, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -587,15 +607,19 @@ msgstr "Invalid alias: \"%s\"." #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias \"%s\" already in use. Try another one." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "Alias can't be the same as nickname." @@ -699,18 +723,18 @@ msgid "Request token already authorized." msgstr "You are not authorised." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -729,12 +753,13 @@ msgid "Database error inserting oauth_token_association." msgstr "Database error inserting OAuth application user." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -789,6 +814,7 @@ msgstr "Account" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1037,104 +1063,138 @@ msgstr "API method under construction." msgid "User not found." msgstr "API method not found." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "No such attachment." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "No nickname." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "No size." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Invalid size." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "You can upload your personal avatar. The maximum file size is %s." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "User without matching profile." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Avatar settings" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Original" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Preview" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Delete" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Upload" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Crop" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "No file uploaded." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "Pick a square area of the image to be your avatar" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Lost our file data." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Avatar updated." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Failed updating avatar." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "Avatar deleted." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "You already blocked that user." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Block user" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1150,7 +1210,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1159,7 +1219,7 @@ msgstr "No" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Do not block this user" @@ -1169,7 +1229,7 @@ msgstr "Do not block this user" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1178,90 +1238,111 @@ msgstr "Yes" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Block this user" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "Failed to save block information." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "No such group." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "%s blocked profiles" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s blocked profiles, page %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "A list of the users blocked from joining this group." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Unblock user from group" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Unblock" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Unblock this user" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Post to %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "No confirmation code." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Confirmation code not found." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "That confirmation code is not for you!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "Unrecognized address type %s." -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "That address has already been confirmed." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1269,7 +1350,7 @@ msgstr "That address has already been confirmed." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1277,27 +1358,32 @@ msgstr "That address has already been confirmed." msgid "Couldn't update user." msgstr "Couldn't update user." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." -msgstr "Couldn't delete email confirmation." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." +msgstr "Couldn't delete IM confirmation." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Confirm address" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "The address \"%s\" has been confirmed for your account." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Conversation" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Notices" @@ -1403,11 +1489,13 @@ msgstr "Do not delete this group" msgid "Delete this group" msgstr "Delete this group" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1709,49 +1797,49 @@ msgstr "Callback URL is not valid." msgid "Could not update application." msgstr "Could not update application." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Edit %s group" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "You must be logged in to create a group." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "You must be an admin to edit the group." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Use this form to edit the group." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Description is too long (max %d chars)" - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Too many aliases! Maximum %d." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Invalid alias: \"%s\"" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Could not update group." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Could not create aliases." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Options saved." @@ -1942,6 +2030,12 @@ msgstr "No pending confirmation to cancel." msgid "That is the wrong email address." msgstr "That is the wrong e-mail address." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Couldn't delete email confirmation." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2121,19 +2215,23 @@ msgstr "You cannot grant user roles on this site." msgid "User already has this role." msgstr "User already has this role." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "No profile specified." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "No profile with that ID." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "No group specified." @@ -2219,6 +2317,14 @@ msgid "" msgstr "" "You can upload a logo image for your group. The maximum file size is %s." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Upload" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Crop" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Pick a square area of the image to be the logo." @@ -2361,15 +2467,18 @@ msgstr "" "Why not [register an account](%%action.register%%) and [create the group](%%" "action.newgroup%%) yourself!" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "Only an admin can unblock group members." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "User is not blocked from group." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Error removing the block." @@ -2957,10 +3066,12 @@ msgstr "Organisation is too long (max 255 chars)." msgid "Could not create application." msgstr "Could not create application." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "New group" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Use this form to create a new group." @@ -3652,8 +3763,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 lowercase letters or numbers, no punctuation or spaces" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Full name" @@ -3693,8 +3805,9 @@ msgid "Bio" msgstr "Bio" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4404,7 +4517,8 @@ msgstr "Organization" msgid "Description" msgstr "Description" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Statistics" @@ -4422,6 +4536,11 @@ msgstr "Application actions" msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Delete" + #: actions/showapplication.php:261 msgid "Application info" msgstr "Application information" @@ -4512,77 +4631,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "" -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "%s group" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "%1$s group, page %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Group profile" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Note" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Group actions" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Notice feed for %s group (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Notice feed for %s group (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Notice feed for %s group (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "FOAF for %s group" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Members" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(None)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "All members" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Created" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Members" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4597,7 +4745,10 @@ msgstr "" "their life and interests. [Join now](%%%%action.register%%%%) to become part " "of this group and many more! ([Read more](%%%%doc.help%%%%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4610,24 +4761,31 @@ msgstr "" "[StatusNet](http://status.net/) tool. Its members share short messages about " "their life and interests. " -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Admins" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "No such message." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "Only the sender and recipient may read this message." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Message to %1$s on %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Message from %1$s on %2$s" @@ -5064,12 +5222,14 @@ msgstr "" msgid "Save snapshot settings" msgstr "Save snapshot settings" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "You are not subscribed to that profile." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "Could not save subscription." @@ -5865,12 +6025,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Welcome to %1$s, @%2$s!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "" #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -7019,7 +7179,8 @@ msgstr "" msgid "FOAF" msgstr "" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -7178,39 +7339,57 @@ msgstr "This page is not available in a media type you accept" msgid "Unsupported image file format." msgstr "Unsupported image file format." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "That file is too big. The maximum file size is %s." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Partial upload." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "System error uploading file." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "Not an image or corrupt file." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Lost our file." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Unknown file type" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "" +msgstr[1] "" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" #: lib/jabber.php:387 #, php-format @@ -8011,6 +8190,13 @@ msgstr "Error opening theme archive." msgid "Top posters" msgstr "Top posters" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Unblock" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "Unsandbox" @@ -8190,3 +8376,9 @@ msgstr "No user specified; using backup user." #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "Description is too long (max %d chars)" + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "Too many aliases! Maximum %d." diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index f577725db0..bb8b016385 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -15,17 +15,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:08:55+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:06+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -121,6 +121,7 @@ msgstr "Ne estas tiu paĝo." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -133,7 +134,7 @@ msgstr "Ne estas tiu paĝo." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -312,11 +313,12 @@ msgstr "Malsukcesis ĝisdatigi uzanton" #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -331,7 +333,7 @@ msgstr "Malsukcesis konservi la profilon." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -507,44 +509,54 @@ msgstr " Malsukcesis certigi fontan uzanton." msgid "Could not find target user." msgstr "Malsukcesis trovi celan uzanton." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Kromnomo devas havi nur minuskulajn literojn kaj numerojn sed neniun spacon." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "La uzantnomo jam uziĝis. Provu ion alian." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Ne valida kromnomo." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Ĉefpaĝo ne estas valida URL." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -553,10 +565,11 @@ msgstr "Plennomo estas tro longa (maksimume 255 literoj)" #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -564,9 +577,11 @@ msgstr[0] "Priskribo estas tro longa (maksimume %d signoj)." msgstr[1] "Priskribo estas tro longa (maksimume %d signoj)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -574,7 +589,12 @@ msgstr "lokonomo estas tro longa (maksimume 255 literoj)" #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, fuzzy, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -590,15 +610,19 @@ msgstr "La alinomo estas nevalida: \"%*s\"." #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "La alinomo \"%s\" estas jam okupita. Provu ion alian." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "La alinomo devas ne esti sama al la kromnomo." @@ -702,18 +726,18 @@ msgid "Request token already authorized." msgstr "Vi ne estas rajtigita." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -732,12 +756,13 @@ msgid "Database error inserting oauth_token_association." msgstr "Datumbaza eraro enigi la uzanton de *OAuth-aplikaĵo." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -791,6 +816,7 @@ msgstr "Konto" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1044,104 +1070,138 @@ msgstr "API-metodo farata." msgid "User not found." msgstr "Metodo de API ne troviĝas." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "Ne estas tiu aldonaĵo." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Neniu kromnomo." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr " Neniu grando." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Grando nevalida." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Vizaĝbildo" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Vi povas alŝuti vian personan vizaĝbildon. Dosiero-grandlimo estas %s." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Uzanto sen egala profilo." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Vizaĝbilda agordo" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Originala" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Antaŭrigardo" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Forigi" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Alŝuti" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Tranĉi" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "Neniu dosiero alŝutiĝas." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "Elektu kvadratan parton de la bildo kiel via vizaĝbildo" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Perdiĝis nia dosiera datumo." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Vizaĝbildo ĝisdatigita." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Eraris ĝisdatigi vizaĝbildon." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "Vizaĝbildo forigita." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "Vi jam blokis la uzanton." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Bloki uzanton" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1156,7 +1216,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1165,7 +1225,7 @@ msgstr "Ne" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Ne bloki la uzanton" @@ -1175,7 +1235,7 @@ msgstr "Ne bloki la uzanton" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1184,90 +1244,111 @@ msgstr "Jes" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Bloki la uzanton" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "Eraris konservi blokado-informon." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "Ne estas tiu grupo." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "%s profiloj blokitaj" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s profiloj blokitaj, paĝo %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "Listo de uzantoj blokita de aniĝi al ĉi tiun grupo." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Malbloki uzanton de grupo" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Malbloki" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Malbloki ĉi tiun uzanton" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Sendi al %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Neniu konfirma kodo." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Konfirma kodo ne trovitas." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "Tiu komfirmnumero ne estas por vi!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "Nerekonata adrestipo %s." -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "La adreso jam estis konfirmita." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1275,7 +1356,7 @@ msgstr "La adreso jam estis konfirmita." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1283,27 +1364,32 @@ msgstr "La adreso jam estis konfirmita." msgid "Couldn't update user." msgstr "Ne povus ĝisdatigi uzanton." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." -msgstr "Ne povas forigi retpoŝtan konfirmon." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." +msgstr "Malsukcesis forigi tujmesaĝila agordo." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Konfirmi retadreson" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Adreso \"%s\" nun konfirmitas je via konto." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Konversacio" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Avizoj" @@ -1413,11 +1499,13 @@ msgstr "Ne forigi la avizon" msgid "Delete this group" msgstr "Forigi la uzanton" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1718,49 +1806,49 @@ msgstr "Revokfunkcia URL estas nevalida." msgid "Could not update application." msgstr "Malsukcesis ĝisdatigi la aplikaĵon." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Redakti %s grupon" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Ensalutu por krei grupon." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Vi devas esti administranto por redakti la grupon." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Uzas ĉi tiun formularon por redakti la grupon." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Priskribo estas tro longa (maksimume %d signoj)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Tro da alinomoj! Maksimume %d." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Nevalida alinomo: \"%s\"" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Malsukcesis ĝisdatigi grupon." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Malsukcesis krei alinomon." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Elektoj konserviĝis." @@ -1951,6 +2039,12 @@ msgstr "Ne estas peto-konfirmo por nuligi." msgid "That is the wrong email address." msgstr "Tiu retpoŝtadreso estas malĝusta." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Ne povas forigi retpoŝtan konfirmon." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2129,19 +2223,23 @@ msgstr "Vi ne rajtas doni al uzanto rolon ĉe ĉi tiu retejo." msgid "User already has this role." msgstr "Uzanto jam havas la rolon." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "Neniu profilo elektita." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "Ne estas profilo kun tiu ID." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "Neniu grupo elektita." @@ -2224,6 +2322,14 @@ msgid "" msgstr "" "Vi povas alŝuti emblemo-bildon por via grupo. Dosiero-grandlimo estas $s." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Alŝuti" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Tranĉi" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Elektu kvadratan parton de la bildo kiel la emblemo." @@ -2366,15 +2472,18 @@ msgstr "" "Kial ne [krei konton](%%action.register%%) kaj mem [krei la grupon](%%action." "newgroup%%)!" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "Nur grupestro rajtas malbloki grupanon." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "La uzanto ne estas blokita de grupo." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Eraro ĉe provo malbloki." @@ -2958,10 +3067,12 @@ msgstr "Organizonomo estas tro longa (maksimume 255 literoj)." msgid "Could not create application." msgstr "Malsukcesis krei aplikaĵon." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Nova grupo" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Uzas ĉi tiun formularon por krei novan grupon." @@ -3646,8 +3757,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 minusklaj literoj aŭ ciferoj, neniu interpunkcio aŭ spaco" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Plena nomo" @@ -3687,8 +3799,9 @@ msgid "Bio" msgstr "Biografio" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4400,7 +4513,8 @@ msgstr "Organizaĵo" msgid "Description" msgstr "Priskribo" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Statistiko" @@ -4418,6 +4532,11 @@ msgstr "Aplikaĵa ago" msgid "Reset key & secret" msgstr "Rekomencigi ŝlosilon & sekreton" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Forigi" + #: actions/showapplication.php:261 msgid "Application info" msgstr "Aplikaĵa informo" @@ -4508,77 +4627,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Tiel vi povas diskonigi vian ŝataton." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "Grupo %s" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "Grupo %1$s, paĝo %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Grupa profilo" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Noto" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "Alnomo" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Grupaj agoj" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Avizofluo de grupo %s (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Avizofluo de grupo %s (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Avizofluo de grupo %s (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "Foramiko de grupo %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Grupanoj" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(nenio)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Ĉiuj grupanoj" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Kreita" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Grupanoj" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4592,7 +4740,10 @@ msgstr "" "[StatusNet](http://status.net/). [Aniĝu](%%action.register%%) por fariĝi " "parto de tiu ĉi grupo kaj multe pli! ([Pli](%%doc.help%%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4605,24 +4756,31 @@ msgstr "" "Molvaro [StatusNet](*http://*status.*net/), kie anoj konigas mesaĝetojn pri " "siaj vivoj kaj ŝatokupoj. " -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Administrantoj" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "Ne estas tiu mesaĝo." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "Nur la sendinto kaj ricevinto rajtas legi la mesaĝon." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Mesaĝo al %1$s ĉe %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Mesaĝo de %1$s ĉe %2$s" @@ -4695,10 +4853,10 @@ msgid "" "[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -"**%s** havas konton ĉe %%site.name%%, [mikrobloga](http://en.wikipedia.org/" -"wiki/Micro-blogging) servo surbaze de ilaro de Libera Molvaro [StatusNet]" -"(http://status.net/). [Aniĝu](%%action.register%%) por sekvi avizojn de **%" -"s** kaj multe pli! ([Pli](%%doc.help%%))" +"**%s** havas konton ĉe %%%%site.name%%%%, [mikrobloga](http://en.wikipedia." +"org/wiki/Micro-blogging) servo surbaze de ilaro de Libera Molvaro [StatusNet]" +"(http://status.net/). [Aniĝu](%%%%action.register%%%%) por sekvi avizojn de " +"**%s** kaj multe pli! ([Pli](%%%%doc.help%%%%))" #: actions/showstream.php:248 #, php-format @@ -4707,8 +4865,8 @@ msgid "" "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. " msgstr "" -"**%s** havas konton ĉe %%site.name%%, [mikrobloga](http://en.wikipedia.org/" -"wiki/Micro-blogging) servo surbaze de ilaro de Libera Molvaro [StatusNet]" +"**%s** havas konton ĉe %%%%site.name%%%%, [mikrobloga](http://en.wikipedia." +"org/wiki/Micro-blogging) servo surbaze de ilaro de Libera Molvaro [StatusNet]" "(http://status.net/). " #: actions/showstream.php:305 @@ -5061,12 +5219,14 @@ msgstr "Momentfotoj sendiĝos al ĉi tiu URL" msgid "Save snapshot settings" msgstr "Konservi retejan agordon" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "Vi ne abonis tiun profilon." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "Malsukcesis konservi abonon." @@ -5860,12 +6020,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Bonvenon al %1$s, @%2$s!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "Neniu difinata uzanto por sol-uzanta reĝimo." #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -7030,7 +7190,8 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "Fluoj" @@ -7191,39 +7352,57 @@ msgstr "La paĝo estas ne havebla je la komunikil-tipo, kiun vi akceptas" msgid "Unsupported image file format." msgstr "Formato ne subtenata." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "La dosiero tro grandas. Dosiera grandlimo estas %s." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Parta alŝuto." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Sisteme eraris alŝuti dosieron." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "Ne bildo aŭ dosiero difektita." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Perdiĝis nian dosieron." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Nekonata dosiertipo" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "MB" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "MB" +msgstr[1] "MB" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "kB" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "kB" +msgstr[1] "kB" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" #: lib/jabber.php:387 #, php-format @@ -7900,7 +8079,7 @@ msgstr "Ĉiuj abonantoj" #: lib/profileaction.php:191 msgid "User ID" -msgstr "Uzanta ID" +msgstr "ID de uzanto" #: lib/profileaction.php:196 msgid "Member since" @@ -8118,6 +8297,13 @@ msgstr "Eraris malfermi desegnan arkivon." msgid "Top posters" msgstr "Pintaj afiŝantoj" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Malbloki" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "Malprovejigi" @@ -8298,3 +8484,9 @@ msgstr "Neniu uzanto-ID specifiĝas." #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "Priskribo estas tro longa (maksimume %d signoj)." + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "Tro da alinomoj! Maksimume %d." diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index b9de34799f..d695e9aca5 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -16,17 +16,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:08:56+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:09+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -122,6 +122,7 @@ msgstr "No existe tal página." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -134,7 +135,7 @@ msgstr "No existe tal página." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -314,11 +315,12 @@ msgstr "No se pudo actualizar el usuario." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -333,7 +335,7 @@ msgstr "No se pudo guardar el perfil." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -509,9 +511,11 @@ msgstr "No se pudo determinar el usuario fuente." msgid "Could not find target user." msgstr "No se pudo encontrar ningún usuario de destino." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" @@ -519,35 +523,43 @@ msgstr "" "espacios." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "El usuario ya existe. Prueba con otro." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Usuario inválido" #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "La página de inicio no es un URL válido." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -556,10 +568,11 @@ msgstr "Tu nombre es demasiado largo (max. 255 carac.)" #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -567,9 +580,11 @@ msgstr[0] "La descripción es demasiado larga (máx. %d caracteres)." msgstr[1] "La descripción es demasiado larga (máx. %d caracteres)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -577,7 +592,12 @@ msgstr "La ubicación es demasiado larga (máx. 255 caracteres)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, fuzzy, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -593,15 +613,19 @@ msgstr "Alias inválido: \"%s\"." #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "El alias \"%s\" ya está en uso. Intenta usar otro." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "El alias no puede ser el mismo que el usuario." @@ -707,18 +731,18 @@ msgid "Request token already authorized." msgstr "No estás autorizado." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -738,12 +762,13 @@ msgid "Database error inserting oauth_token_association." msgstr "Error de base de datos al insertar usuario de la aplicación OAuth." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -798,6 +823,7 @@ msgstr "Cuenta" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1050,104 +1076,138 @@ msgstr "Método API en construcción." msgid "User not found." msgstr "Método de API no encontrado." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "No existe tal archivo adjunto." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Ningún nombre de usuario." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Ningún tamaño." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Tamaño inválido." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Imagen" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Puedes subir tu imagen personal. El tamaño máximo de archivo es %s." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Usuario sin perfil coincidente." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Configuración de imagen" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Original" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Vista previa" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Borrar" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Subir" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Cortar" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "Ningún archivo fue subido." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "Elige un área cuadrada para que sea tu imagen" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Se perdió nuestros datos de archivo." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Imagen actualizada" -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Error al actualizar la imagen." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "Imagen borrada." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "Ya has bloqueado a este usuario." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Bloquear usuario." -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1163,7 +1223,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1172,7 +1232,7 @@ msgstr "No" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "No bloquear a este usuario" @@ -1182,7 +1242,7 @@ msgstr "No bloquear a este usuario" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1191,91 +1251,112 @@ msgstr "Sí" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Bloquear este usuario." -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "No se guardó información de bloqueo." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "No existe ese grupo." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "%s perfiles bloqueados" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s perfiles bloqueados, página %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "" "Una lista de los usuarios que han sido bloqueados para unirse a este grupo." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Desbloquear usuario de grupo" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Desbloquear" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Desbloquear este usuario" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Postear a %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Ningún código de confirmación." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Código de confirmación no encontrado." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "¡Ese código de confirmación no es para ti!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "Tipo de dirección %s desconocida." -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "Esa dirección ya fue confirmada." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1283,7 +1364,7 @@ msgstr "Esa dirección ya fue confirmada." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1291,27 +1372,32 @@ msgstr "Esa dirección ya fue confirmada." msgid "Couldn't update user." msgstr "No se pudo actualizar el usuario." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." -msgstr "No se pudo eliminar la confirmación de correo electrónico." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." +msgstr "No se pudo eliminar la confirmación de mensajería instantánea." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Confirmar la dirección" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "La dirección \"%s\" fue confirmada para tu cuenta." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Conversación" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Mensajes" @@ -1422,11 +1508,13 @@ msgstr "No eliminar este mensaje" msgid "Delete this group" msgstr "Borrar este usuario" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1730,49 +1818,49 @@ msgstr "El URL de devolución de llamada es inválido." msgid "Could not update application." msgstr "No fue posible actualizar la aplicación." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Editar grupo %s" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Debes estar conectado para crear un grupo" -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Para editar el grupo debes ser administrador." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Usa este formulario para editar el grupo." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "La descripción es demasiado larga (máx. %d caracteres)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "¡Muchos seudónimos! El máximo es %d." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Alias inválido: \"%s\"" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "No se pudo actualizar el grupo." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "No fue posible crear alias." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Se guardó Opciones." @@ -1967,6 +2055,12 @@ msgstr "Ninguna confirmación pendiente para cancelar." msgid "That is the wrong email address." msgstr "Esa es la dirección de correo electrónico incorrecta." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "No se pudo eliminar la confirmación de correo electrónico." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2147,19 +2241,23 @@ msgstr "No puedes conceder funciones de usuario en este sitio." msgid "User already has this role." msgstr "El usuario ya tiene esta función." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "No se especificó perfil." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "No existe perfil con ese ID" -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "Grupo no especificado." @@ -2248,6 +2346,14 @@ msgstr "" "Puedes subir una imagen de logo para tu grupo. El tamaño máximo del archivo " "debe ser %s." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Subir" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Cortar" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Elige un área cuadrada de la imagen para que sea tu logo." @@ -2390,15 +2496,18 @@ msgstr "" "¿Por qué no [registras una cuenta](%%action.register%%) y [creas el grupo](%%" "action.newgroup%%) tú mismo?" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "Sólo un administrador puede desbloquear miembros de grupos." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "El usuario no está bloqueado del grupo." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Se ha producido un error al eliminar el bloque." @@ -2994,10 +3103,12 @@ msgstr "El texto de organización es muy largo (máx. 255 caracteres)." msgid "Could not create application." msgstr "No se pudo crear la aplicación." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Grupo nuevo " +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Usa este formulario para crear un grupo nuevo." @@ -3705,8 +3816,9 @@ msgstr "" "1-64 letras en minúscula o números, sin signos de puntuación o espacios" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Nombre completo" @@ -3746,8 +3858,9 @@ msgid "Bio" msgstr "Biografía" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4481,7 +4594,8 @@ msgstr "Organización" msgid "Description" msgstr "Descripción" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Estadísticas" @@ -4499,6 +4613,11 @@ msgstr "Acciones de la aplicación" msgid "Reset key & secret" msgstr "Reiniciar clave y secreto" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Borrar" + #: actions/showapplication.php:261 msgid "Application info" msgstr "Información de la aplicación" @@ -4591,77 +4710,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Esta es una manera de compartir lo que te gusta." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "Grupo %s" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "grupo %1$s, página %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Perfil del grupo" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Nota" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "Alias" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Acciones del grupo" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Canal de mensajes del grupo %s (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Canal de mensajes del grupo %s (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Canal de mensajes del grupo %s (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "Amistades de amistades del grupo %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Miembros" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Ninguno)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Todos los miembros" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Creado" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Miembros" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4677,7 +4825,10 @@ msgstr "" "action.register%%%%) para formar parte de este y muchos más grupos! ([Más " "información](%%%%doc.help%%%%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4690,24 +4841,31 @@ msgstr "" "herramienta de software libre [StatusNet](http://status.net/). Sus miembros " "comparten mensajes cortos acerca de su vida e intereses. " -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Administradores" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "No existe el mensaje." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "Sólo el remitente y el receptor pueden leer este mensaje." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Mensaje a %1$s en %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Mensaje de %1$s en %2$s" @@ -5156,12 +5314,14 @@ msgstr "Las capturas se enviarán a este URL" msgid "Save snapshot settings" msgstr "Guardar la configuración de instantáneas" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "No te has suscrito a ese perfil." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "No se ha podido guardar la suscripción." @@ -5975,12 +6135,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Bienvenido a %1$s, @%2$s!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "Ningún usuario sólo definido para modo monousuario." #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -7154,7 +7314,8 @@ msgstr "Atom" msgid "FOAF" msgstr "Amistad de amistad" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -7316,39 +7477,57 @@ msgstr "Esta página no está disponible en el tipo de medio que aceptas." msgid "Unsupported image file format." msgstr "Formato de imagen no soportado." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "El archivo es muy grande. El tamaño máximo permitido es %s." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Subida parcial" #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Error del sistema subir el archivo" -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "No es una imagen o es un fichero corrupto." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Se perdió nuestro archivo." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Tipo de archivo desconocido" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "MB" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "MB" +msgstr[1] "MB" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "kB" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "kB" +msgstr[1] "kB" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" #: lib/jabber.php:387 #, php-format @@ -8251,6 +8430,13 @@ msgstr "Error al abrir archivo de tema." msgid "Top posters" msgstr "Principales posteadores" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Desbloquear" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "Eliminar restricciones" @@ -8431,3 +8617,9 @@ msgstr "No se ha especificado ID de usuario." #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "La descripción es demasiado larga (máx. %d caracteres)." + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "¡Muchos seudónimos! El máximo es %d." diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 42b056bf7c..97672a3d6f 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:08:57+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:11+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" @@ -23,9 +23,9 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -121,6 +121,7 @@ msgstr "چنین صفحه‌ای وجود ندارد." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -133,7 +134,7 @@ msgstr "چنین صفحه‌ای وجود ندارد." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -310,11 +311,12 @@ msgstr "نمی‌توان کاربر را به‌هنگام‌سازی کرد." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -329,7 +331,7 @@ msgstr "نمی‌توان نمایه را ذخیره کرد." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -501,43 +503,53 @@ msgstr "نمی‌توان کاربر منبع را تعیین کرد." msgid "Could not find target user." msgstr "نمی‌توان کاربر هدف را پیدا کرد." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "لقب باید شامل حروف کوچک و اعداد و بدون فاصله باشد." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "این لقب در حال حاضر ثبت شده است. لطفا یکی دیگر انتخاب کنید." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "لقب نا معتبر." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "صفحهٔ خانگی یک نشانی معتبر نیست." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -546,19 +558,22 @@ msgstr "نام کامل خیلی طولانی است (حداکثر ۲۵۵ نوی #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." msgstr[0] "توصیف خیلی طولانی است (حداکثر %d نویسه)" #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -566,7 +581,12 @@ msgstr "نام مکان خیلی طولانی است (حداکثر ۲۵۵ نوی #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, fuzzy, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -581,15 +601,19 @@ msgstr "نام مستعار نامعتبر است: «%s»." #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "نام‌مستعار «%s» ازپیش گرفته‌شده‌است. یکی دیگر را امتحان کنید." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "نام و نام مستعار شما نمی تواند یکی باشد ." @@ -695,18 +719,18 @@ msgid "Request token already authorized." msgstr "شما شناسایی نشده اید." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -725,12 +749,13 @@ msgid "Database error inserting oauth_token_association." msgstr "هنگام افزودن کاربر برنامهٔ OAuth در پایگاه داده خطایی رخ داد." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -787,6 +812,7 @@ msgstr "حساب کاربری" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1036,106 +1062,140 @@ msgstr "روش API در دست ساخت." msgid "User not found." msgstr "رابط مورد نظر پیدا نشد." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "چنین پیوستی وجود ندارد." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "لقبی وجود ندارد." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "بدون اندازه." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "اندازه نادرست است." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "چهره" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" "شما می‌توانید چهرهٔ شخصی خود را بارگذاری کنید. حداکثر اندازه پرونده %s است." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "کاربر نمایهٔ تطبیق ندارد." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "تنظیمات چهره" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "اصلی" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "پیش‌نمایش" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "حذف" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "پایین‌گذاری" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "برش" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "هیچ پرونده‌ای بارگذاری نشد." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "" "یک مربع از عکس خود را انتخاب کنید تا به عنوان تصویر چهرهٔ شما انتخاب شود." -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "فایل اطلاعات خود را گم کرده ایم." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "چهره به روز رسانی شد." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "به روز رسانی چهره موفقیت آمیر نبود." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "چهره پاک شد." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "شما هم اکنون آن کاربر را مسدود کرده اید." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "مسدود کردن کاربر" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1152,7 +1212,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1161,7 +1221,7 @@ msgstr "خیر" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "کاربر را مسدود نکن" @@ -1171,7 +1231,7 @@ msgstr "کاربر را مسدود نکن" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1180,90 +1240,111 @@ msgstr "بله" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "کاربر را مسدود کن" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "ذخیرهٔ ردیف اطلاعات شکست خورد." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "چنین گروهی وجود ندارد." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "%s نمایه‌های مسدود شده" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s نمایه‌های مسدود شده، صفحهٔ %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "فهرستی از افراد مسدود شده در پیوستن به این گروه." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "آزاد کردن کاربر در پیوستن به گروه" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "آزاد سازی" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "آزاد سازی کاربر" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "فرستادن به %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "بدون کد تصدیق." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "کد تصدیق پیدا نشد." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "آن کد تصدیق برای شما نیست!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "نوع نشانی نامشخص است %s." -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "آن نشانی در حال حاضر تصدیق شده است." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1271,7 +1352,7 @@ msgstr "آن نشانی در حال حاضر تصدیق شده است." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1279,27 +1360,32 @@ msgstr "آن نشانی در حال حاضر تصدیق شده است." msgid "Couldn't update user." msgstr "نمی‌توان کاربر را به روز کرد." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." -msgstr "نمی‌توان تصدیق پست الکترونیک را پاک کرد." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." +msgstr "نمی‌توان تایید پیام‌رسان فوری را پاک کرد." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "تایید نشانی" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "نشانی «%s« برای شما تصدیق شد." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "مکالمه" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "پیام‌ها" @@ -1410,11 +1496,13 @@ msgstr "این پیام را پاک نکن" msgid "Delete this group" msgstr "حذف این کاربر" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1722,49 +1810,49 @@ msgstr "نشانی اینترنتی منبع معتبر نیست." msgid "Could not update application." msgstr "نمی‌توان برنامه را به‌هنگام‌سازی کرد." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "ویرایش گروه %s" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "برای ساخت یک گروه، باید وارد شده باشید." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "برای ویرایش گروه باید یک مدیر باشید." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "از این روش برای ویرایش گروه استفاده کنید." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "توصیف خیلی طولانی است (حداکثر %d نویسه)" - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "نام‌های مستعار بسیار زیاد هستند! حداکثر %d." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "نام‌مستعار غیر مجاز: «%s»" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "نمی‌توان گروه را به‌هنگام‌سازی کرد." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "نمی‌توان نام‌های مستعار را ساخت." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "گزینه‌ها ذخیره شدند." @@ -1958,6 +2046,12 @@ msgstr "هیچ تاییدی برای فسخ کردن وجود ندارد." msgid "That is the wrong email address." msgstr "این نشانی پست الکترونیکی نادرست است." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "نمی‌توان تصدیق پست الکترونیک را پاک کرد." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2138,19 +2232,23 @@ msgstr "شما نمی‌توانید در این وب‌گاه نقش‌های msgid "User already has this role." msgstr "کاربر از قبل این وظیفه را داشته است." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "نمایه‌ای مشخص نشده است." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "کاربری با چنین شناسه‌ای وجود ندارد." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "گروهی مشخص نشده است." @@ -2233,6 +2331,14 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "شما می‌توانید یک نشان برای گروه خود با بیشینه حجم %s بفرستید." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "پایین‌گذاری" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "برش" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "یک ناحیه‌ی مربع از تصویر را انتخاب کنید تا به عنوان نشان انتخاب شود." @@ -2375,15 +2481,18 @@ msgstr "" "چرا [ثبت نام](%%action.register%%) نمی‌کنید و گروه را خود [ایجاد](%%action." "newgroup%%) نمی‌کنید!" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "تنها یک مدیر توانایی برداشتن منع کاربران گروه را دارد." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "کاربر از گروه منع نشده است." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "اشکال در پاکسازی" @@ -2966,10 +3075,12 @@ msgstr "نام سازمان خیلی طولانی است (حداکثر ۲۵۵ ن msgid "Could not create application." msgstr "نمی‌توان برنامه را ساخت." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "گروه جدید" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "از این فرم برای ساختن یک گروه جدید استفاده کنید" @@ -3672,8 +3783,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "۱-۶۴ کاراکتر کوچک یا اعداد، بدون نقطه گذاری یا فاصله" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "نام‌کامل" @@ -3712,8 +3824,9 @@ msgid "Bio" msgstr "شرح‌حال" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4430,7 +4543,8 @@ msgstr "سازمان" msgid "Description" msgstr "توصیف" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "آمار" @@ -4448,6 +4562,11 @@ msgstr "اعمال برنامه" msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "حذف" + #: actions/showapplication.php:261 msgid "Application info" msgstr "اطلاعات برنامه" @@ -4540,77 +4659,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "این یک راه است برای به اشتراک گذاشتن آنچه که دوست دارید." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "گروه %s" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "گروه %1$s، صفحهٔ %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "نمایهٔ گروه" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "نشانی اینترنتی" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "یادداشت" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "نام های مستعار" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "اعمال گروه" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "خوراک پیام برای گروه %s (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "خوراک پیام برای گروه %s (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "خوراک پیام برای گروه %s (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "FOAF برای گروه %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "اعضا" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "هیچ" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "همهٔ اعضا" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "ساخته شد" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "اعضا" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4626,7 +4774,10 @@ msgstr "" "می‌گذارند. [اکنون بپیوندید ](%%%%action.register%%%%) تا یکی از اعضای این " "گروه و بلکه بیش‌تر بشوید! ([بیش‌تر بخوانید](%%%%doc.help%%%%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4640,24 +4791,31 @@ msgstr "" "است. کاربران آن پیام‌های کوتاهی را دربارهٔ زندگی و علاقه‌مندی‌هایشان به اشتراک " "می‌گذارند. " -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "مدیران" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "چنین پیغامی وجود ندارد." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "تنها فرستنده و گیرنده می‌توانند این پیام را بخوانند." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "پیام به %1$s در %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "پیام از %1$s در %2$s" @@ -5102,12 +5260,14 @@ msgstr "تصاویر لحظه‌ای به این نشانی اینترنتی ف msgid "Save snapshot settings" msgstr "ذخیرهٔ تنظیمات تصویر لحظه‌ای" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "شما مشترک آن نمایه نیستید." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "نمی‌توان اشتراک را ذخیره کرد." @@ -5914,12 +6074,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "@%2$s، به %1$s خوش آمدید!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "هیچ کاربر تنهایی برای حالت تک کاربره مشخص نشده است." #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -7086,7 +7246,8 @@ msgstr "مؤلف" msgid "FOAF" msgstr "" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -7244,40 +7405,55 @@ msgstr "این صفحه در نوع رسانه‌ای که پذیرفته‌ای msgid "Unsupported image file format." msgstr "فرمت(فایل) عکس پشتیبانی نشده." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "این پرونده خیلی بزرگ است. بیشینهٔ اندازهٔ پرونده %s است." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 #, fuzzy msgid "Partial upload." msgstr "هیچ پرونده‌ای بارگذاری نشد." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "هنگام بارگذاری پرونده خطای سیستمی رخ داد." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "تصویر یا فایل خرابی نیست" -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "فایلمان گم شده" -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "نوع فایل پشتیبانی نشده" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "مگابایت" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "مگابایت" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "کیلوبایت" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "کیلوبایت" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" #: lib/jabber.php:387 #, php-format @@ -8170,6 +8346,13 @@ msgstr "خطا هنگام به‌هنگام‌سازی نمایهٔ از راه msgid "Top posters" msgstr "اعلان های بالا" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "آزاد سازی" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "" @@ -8348,3 +8531,9 @@ msgstr "هیچ شناسهٔ کاربری مشخص نشده است." #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "توصیف خیلی طولانی است (حداکثر %d نویسه)" + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "نام‌های مستعار بسیار زیاد هستند! حداکثر %d." diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index adf3205e7e..cd6c5c2358 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -14,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:08:58+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:13+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -126,6 +126,7 @@ msgstr "Sivua ei ole." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -138,7 +139,7 @@ msgstr "Sivua ei ole." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -314,11 +315,12 @@ msgstr "Käyttäjän päivitys epäonnistui." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -333,7 +335,7 @@ msgstr "Profiilin tallennus epäonnistui." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -511,9 +513,11 @@ msgstr "Ei voitu päivittää käyttäjää." msgid "Could not find target user." msgstr "Ei voitu päivittää käyttäjää." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" @@ -521,35 +525,43 @@ msgstr "" "välilyöntiä." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Tunnus on jo käytössä. Yritä toista tunnusta." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Tuo ei ole kelvollinen tunnus." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Kotisivun verkko-osoite ei ole toimiva." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -558,10 +570,11 @@ msgstr "Koko nimi on liian pitkä (max 255 merkkiä)." #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -569,9 +582,11 @@ msgstr[0] "kuvaus on liian pitkä (max %d merkkiä)." msgstr[1] "kuvaus on liian pitkä (max %d merkkiä)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -579,7 +594,12 @@ msgstr "Kotipaikka on liian pitkä (max 255 merkkiä)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, fuzzy, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -595,15 +615,19 @@ msgstr "Virheellinen alias: \"%s\"" #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias \"%s\" on jo käytössä. Yritä toista aliasta." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "Alias ei voi olla sama kuin ryhmätunnus." @@ -709,18 +733,18 @@ msgid "Request token already authorized." msgstr "Sinulla ei ole valtuutusta tähän." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -742,12 +766,13 @@ msgid "Database error inserting oauth_token_association." msgstr "Tietokantavirhe tallennettaessa risutagiä: %s" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -796,6 +821,7 @@ msgstr "Käyttäjätili" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1048,105 +1074,139 @@ msgstr "API-metodi on työn alla!" msgid "User not found." msgstr "API-metodia ei löytynyt." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "Liitettä ei ole." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Tunnusta ei ole." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Kokoa ei ole." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Koko ei kelpaa." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Kuva" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Voit ladata oman profiilikuvasi. Maksimikoko on %s." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Käyttäjällä ei ole profiilia." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Profiilikuva-asetukset" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Alkuperäinen" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Esikatselu" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Poista" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Lataa" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Rajaa" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 #, fuzzy msgid "No file uploaded." msgstr "Profiilia ei ole määritelty." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "Valitse neliön muotoinen alue kuvasta profiilikuvaksi" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Tiedoston data hävisi." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Kuva päivitetty." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Profiilikuvan päivittäminen epäonnistui." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "Kuva poistettu." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "!!FUZZZY!!Olet jos tilannut seuraavien käyttäjien päivitykset:" -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Estä käyttäjä" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1159,7 +1219,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1168,7 +1228,7 @@ msgstr "Huomaa" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Älä estä tätä käyttäjää" @@ -1178,7 +1238,7 @@ msgstr "Älä estä tätä käyttäjää" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 #, fuzzy @@ -1188,90 +1248,111 @@ msgstr "Kyllä" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Estä tämä käyttäjä" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "Käyttäjän estotiedon tallennus epäonnistui." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "Tuota ryhmää ei ole." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, fuzzy, php-format msgid "%s blocked profiles" msgstr "Käyttäjän profiili" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, fuzzy, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%s ja kaverit, sivu %d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "Lista käyttäjistä, jotka ovat estetty liittymästä tähän ryhmään." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Poista käyttäjän esto ryhmästä" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Poista esto" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Poista esto tältä käyttäjältä" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Vastaukset käyttäjälle %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Varmistuskoodia ei ole annettu." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Vahvistuskoodia ei löytynyt." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "Tämä vahvistuskoodi ei ole sinun!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "Tuntematon osoitetyyppi %s " -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "Tämä osoite on jo vahvistettu." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1279,7 +1360,7 @@ msgstr "Tämä osoite on jo vahvistettu." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1287,27 +1368,32 @@ msgstr "Tämä osoite on jo vahvistettu." msgid "Couldn't update user." msgstr "Ei voitu päivittää käyttäjää." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." msgstr "Ei voitu poistaa sähköpostivahvistusta." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Tämän hetken vahvistettu sähköpostiosoite." -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Osoite \"%s\" on vahvistettu sinun käyttäjätunnuksellesi." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Keskustelu" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Päivitykset" @@ -1417,11 +1503,13 @@ msgstr "Älä poista tätä päivitystä" msgid "Delete this group" msgstr "Poista käyttäjä" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1741,50 +1829,50 @@ msgstr "" msgid "Could not update application." msgstr "Ei voitu päivittää ryhmää." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Muokkaa ryhmää %s" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Sinun pitää olla kirjautunut sisään jotta voit luoda ryhmän." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "" "Sinun pitää olla kirjautunut sisään, jotta voit muuttaa ryhmän tietoja." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Käytä tätä lomaketta muokataksesi ryhmää." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "kuvaus on liian pitkä (max %d merkkiä)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Liikaa aliaksia. Maksimimäärä on %d." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Virheellinen alias: \"%s\"" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Ei voitu päivittää ryhmää." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Ei voitu lisätä aliasta." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Asetukset tallennettu." @@ -1984,6 +2072,12 @@ msgstr "Avoimia vahvistuksia ei ole peruutettavana." msgid "That is the wrong email address." msgstr "Tämä on väärä pikaviestiosoite." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Ei voitu poistaa sähköpostivahvistusta." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2162,20 +2256,24 @@ msgstr "Päivityksesi tähän palveluun on estetty." msgid "User already has this role." msgstr "Käyttäjällä ei ole profiilia." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "Profiilia ei ole määritelty." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 #, fuzzy msgid "No profile with that ID." msgstr "Ei profiilia tuolle ID:lle." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "Ryhmää ei ole määritelty." @@ -2258,6 +2356,14 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "Voit ladata ryhmälle logokuvan. Maksimikoko on %s." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Lataa" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Rajaa" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Valitse neliön muotoinen alue kuvasta logokuvaksi" @@ -2392,15 +2498,18 @@ msgid "" "action.newgroup%%) yourself!" msgstr "" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "Vain ylläpitäjä voi poistaa eston ryhmän jäseniltä." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "Käyttäjää ei ole estetty ryhmästä." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Tapahtui virhe, kun estoa poistettiin." @@ -3005,10 +3114,12 @@ msgstr "Kotipaikka on liian pitkä (max 255 merkkiä)." msgid "Could not create application." msgstr "Ei voitu lisätä aliasta." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Uusi ryhmä" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Käytä tätä lomaketta luodaksesi ryhmän." @@ -3726,8 +3837,9 @@ msgstr "" "välilyöntejä" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Koko nimi" @@ -3767,8 +3879,9 @@ msgid "Bio" msgstr "Tietoja" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4504,7 +4617,8 @@ msgstr "Sivutus" msgid "Description" msgstr "Kuvaus" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Tilastot" @@ -4522,6 +4636,11 @@ msgstr "" msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Poista" + #: actions/showapplication.php:261 msgid "Application info" msgstr "" @@ -4606,78 +4725,107 @@ msgstr "" msgid "This is a way to share what you like." msgstr "" -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "Ryhmä %s" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "Ryhmät, sivu %d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Ryhmän profiili" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Huomaa" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "Aliakset" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Ryhmän toiminnot" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Syöte ryhmän %s päivityksille (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Syöte ryhmän %s päivityksille (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Syöte ryhmän %s päivityksille (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "Käyttäjän %s lähetetyt viestit" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Jäsenet" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 #, fuzzy msgid "(None)" msgstr "(Tyhjä)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Kaikki jäsenet" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Luotu" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Jäsenet" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4687,7 +4835,10 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4698,24 +4849,31 @@ msgstr "" "**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu]" "(http://en.wikipedia.org/wiki/Micro-blogging)" -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Ylläpitäjät" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "Tuota viestiä ei ole." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "Vain lähettäjä ja vastaanottaja voivat lukea tämän viestin." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Viesti käyttäjälle %1$s, %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Viesti käyttäjältä %1$s, %2$s" @@ -5167,12 +5325,14 @@ msgstr "" msgid "Save snapshot settings" msgstr "Profiilikuva-asetukset" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "Et ole tilannut tämän käyttäjän päivityksiä." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "Tilausta ei onnistuttu tallentamaan." @@ -5984,12 +6144,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Viesti käyttäjälle %1$s, %2$s" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "" #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -7154,7 +7314,8 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -7318,39 +7479,57 @@ msgstr "Tämä sivu ei ole saatavilla sinulle sopivassa mediatyypissä." msgid "Unsupported image file format." msgstr "Kuvatiedoston formaattia ei ole tuettu." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, fuzzy, php-format msgid "That file is too big. The maximum file size is %s." msgstr "Voit ladata ryhmälle logon." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Osittain ladattu palvelimelle." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Tiedoston lähetyksessä tapahtui järjestelmävirhe." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "Tuo ei ole kelvollinen kuva tai tiedosto on rikkoutunut." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Tiedosto hävisi." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Tunnistamaton tiedoston tyyppi" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "" +msgstr[1] "" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" #: lib/jabber.php:387 #, php-format @@ -8171,6 +8350,13 @@ msgstr "Tapahtui virhe, kun estoa poistettiin." msgid "Top posters" msgstr "Eniten päivityksiä" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Poista esto" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "" @@ -8357,3 +8543,9 @@ msgstr "Ryhmää ei ole määritelty." #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "kuvaus on liian pitkä (max %d merkkiä)." + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "Liikaa aliaksia. Maksimimäärä on %d." diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index d5d956107e..b2e8cc18a1 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -20,17 +20,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:08:59+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:16+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -126,6 +126,7 @@ msgstr "Page non trouvée." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -138,7 +139,7 @@ msgstr "Page non trouvée." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -319,11 +320,12 @@ msgstr "Impossible de mettre à jour l’utilisateur." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -338,7 +340,7 @@ msgstr "Impossible d’enregistrer le profil." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -517,9 +519,11 @@ msgstr "Impossible de déterminer l’utilisateur source." msgid "Could not find target user." msgstr "Impossible de trouver l’utilisateur cible." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" @@ -527,35 +531,43 @@ msgstr "" "chiffres, sans espaces." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Pseudo déjà utilisé. Essayez-en un autre." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Pseudo invalide." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "L’adresse du site personnel n’est pas un URL valide. " #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 msgid "Full name is too long (maximum 255 characters)." msgstr "Le nom complet est trop long (limité à 255 caractères maximum)." @@ -563,10 +575,11 @@ msgstr "Le nom complet est trop long (limité à 255 caractères maximum)." #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -574,16 +587,23 @@ msgstr[0] "La description est trop longue (limitée à %d caractère maximum)." msgstr[1] "La description est trop longue (limitée à %d caractères maximum)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 msgid "Location is too long (maximum 255 characters)." msgstr "L’emplacement est trop long (limité à 255 caractères maximum)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, fuzzy, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -599,15 +619,19 @@ msgstr "Alias invalide : « %s »." #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias « %s » déjà utilisé. Essayez-en un autre." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "L’alias ne peut pas être le même que le pseudo." @@ -710,18 +734,18 @@ msgid "Request token already authorized." msgstr "Le jeton de requête a déjà été autorisé." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -743,12 +767,13 @@ msgstr "" "l’utilisateur de l’application OAuth" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -805,6 +830,7 @@ msgstr "Compte" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1062,31 +1088,42 @@ msgstr "Méthode API en construction." msgid "User not found." msgstr "Page non trouvée." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "Pièce jointe non trouvée." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Aucun pseudo." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Aucune taille" -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Taille incorrecte." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." @@ -1094,74 +1131,97 @@ msgstr "" "Vous pouvez associer un « avatar » (image personnelle) à votre profil. La " "taille maximale du fichier est de %s." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Utilisateur sans profil correspondant." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Paramètres de l’avatar" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Image originale" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Aperçu" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Supprimer" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Transfert" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Recadrer" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "Aucun fichier n’a été téléversé." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "Sélectionnez une zone de forme carrée pour définir votre avatar" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Données perdues." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Avatar mis à jour." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "La mise à jour de l’avatar a échoué." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "Avatar supprimé." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "Vous avez déjà bloqué cet utilisateur." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Bloquer cet utilisateur" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1177,7 +1237,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1186,7 +1246,7 @@ msgstr "Non" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Ne pas bloquer cet utilisateur" @@ -1196,7 +1256,7 @@ msgstr "Ne pas bloquer cet utilisateur" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1205,90 +1265,111 @@ msgstr "Oui" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Bloquer cet utilisateur" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "Impossible d’enregistrer les informations de blocage." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "Aucun groupe trouvé." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "%s profils bloqués" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s profils bloqués, page %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "Une liste des utilisateurs dont l’inscription à ce groupe est bloquée." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Débloquer l’utilisateur de ce groupe" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Débloquer" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Débloquer cet utilisateur" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Poster sur %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Aucun code de confirmation." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Code de confirmation non trouvé." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "Ce code de confirmation n’est pas pour vous !" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "Type d’adresse non reconnu : %s." -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "Cette adresse a déjà été confirmée." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1296,7 +1377,7 @@ msgstr "Cette adresse a déjà été confirmée." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1304,27 +1385,32 @@ msgstr "Cette adresse a déjà été confirmée." msgid "Couldn't update user." msgstr "Impossible de mettre à jour l’utilisateur." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." -msgstr "Impossible de supprimer le courriel de confirmation." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." +msgstr "Impossible de supprimer la confirmation de messagerie instantanée." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Confirmer l’adresse" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "L'adresse \"%s\" a été validée pour votre compte." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Conversation" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Avis" @@ -1431,11 +1517,13 @@ msgstr "Ne pas supprimer ce groupe" msgid "Delete this group" msgstr "Supprimer ce groupe" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1736,49 +1824,49 @@ msgstr "L’URL de rappel (Callback) est invalide." msgid "Could not update application." msgstr "Impossible de mettre à jour l’application." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Modifier le groupe %s" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Vous devez ouvrir une session pour créer un groupe." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Vous devez être administrateur pour modifier le groupe." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Remplissez ce formulaire pour modifier les options du groupe." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "La description est trop longue (limitée à %d caractères maximum)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Trop d’alias ! Maximum %d." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Alias invalide : « %s »" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Impossible de mettre à jour le groupe." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Impossible de créer les alias." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Vos options ont été enregistrées." @@ -1971,6 +2059,12 @@ msgstr "Aucune confirmation à annuler." msgid "That is the wrong email address." msgstr "Cette adresse de messagerie électronique est erronée." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Impossible de supprimer le courriel de confirmation." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2151,19 +2245,23 @@ msgstr "Vous ne pouvez pas attribuer des rôles aux utilisateurs sur ce site." msgid "User already has this role." msgstr "L’utilisateur a déjà ce rôle." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "Aucun profil n’a été spécifié." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "Aucun profil ne correspond à cet identifiant." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "Aucun groupe n’a été spécifié." @@ -2251,6 +2349,14 @@ msgstr "" "Vous pouvez choisir un logo pour votre groupe. La taille maximale du fichier " "est de %s." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Transfert" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Recadrer" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Sélectionnez une zone de forme carrée sur l’image qui sera le logo." @@ -2395,15 +2501,18 @@ msgstr "" "Pourquoi ne pas [créer un compte](%%action.register%%) et [créer le groupe](%" "%action.newgroup%%) vous-même !" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "Seul un administrateur peut débloquer les membres du groupes." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "Cet utilisateur n’est pas bloqué du groupe." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Erreur lors de l’annulation du blocage." @@ -3008,10 +3117,12 @@ msgstr "L’organisation est trop longue (limitée à 255 caractères maximum)." msgid "Could not create application." msgstr "Impossible de créer l’application." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Nouveau groupe" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Remplissez les champs ci-dessous pour créer un nouveau groupe :" @@ -3705,8 +3816,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces." #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Nom complet" @@ -3746,8 +3858,9 @@ msgid "Bio" msgstr "Bio" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4481,7 +4594,8 @@ msgstr "Organisation" msgid "Description" msgstr "Description" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Statistiques" @@ -4499,6 +4613,11 @@ msgstr "Actions de l’application" msgid "Reset key & secret" msgstr "Réinitialiser la clé et le secret" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Supprimer" + #: actions/showapplication.php:261 msgid "Application info" msgstr "Informations sur l’application" @@ -4592,77 +4711,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "C’est un moyen de partager ce que vous aimez." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "Groupe %s" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "Groupe %1$s, page %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Profil du groupe" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Note" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "Alias" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Actions du groupe" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Fil des avis du groupe %s (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Fil des avis du groupe %s (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Fil des avis du groupe %s (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "ami d’un ami pour le groupe %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Membres" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(aucun)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Tous les membres" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Créé" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Membres" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4678,7 +4826,10 @@ msgstr "" "action.register%%%%) pour devenir membre de ce groupe et bien plus ! ([En " "lire plus](%%%%doc.help%%%%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4691,26 +4842,33 @@ msgstr "" "logiciel libre [StatusNet](http://status.net/). Ses membres partagent des " "messages courts à propos de leur vie et leurs intérêts. " -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Administrateurs" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "Message introuvable." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "" "Ce message personnel ne peut être lu que par son expéditeur et son " "destinataire." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Message adressé à %1$s le %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Message reçu de %1$s le %2$s" @@ -5161,12 +5319,14 @@ msgstr "Les instantanés seront envoyés à cette URL" msgid "Save snapshot settings" msgstr "Sauvegarder les paramètres des instantanés" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "Vous n’êtes pas abonné(e) à ce profil." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "Impossible d’enregistrer l’abonnement." @@ -5986,12 +6146,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Bienvenue à %1$s, @%2$s !" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "Aucun utilisateur unique défini pour le mode mono-utilisateur." #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "Code en mode mono-utilisateur appelé quand ce n’est pas autorisé." @@ -7168,7 +7328,8 @@ msgstr "Atom" msgid "FOAF" msgstr "Ami d’un ami" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "Flux d’informations" @@ -7331,39 +7492,57 @@ msgstr "" msgid "Unsupported image file format." msgstr "Format de fichier d’image non supporté." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "Ce fichier est trop grand. La taille maximale est %s." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Transfert partiel." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Erreur système lors du transfert du fichier." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "Ceci n’est pas une image, ou c’est un fichier corrompu." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Fichier perdu." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Type de fichier inconnu" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "Mo" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "Mo" +msgstr[1] "Mo" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "Ko" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "Ko" +msgstr[1] "Ko" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" #: lib/jabber.php:387 #, php-format @@ -8268,6 +8447,13 @@ msgstr "Erreur lors de l’ouverture de l’archive du thème." msgid "Top posters" msgstr "Utilisateurs les plus actifs" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Débloquer" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "Sortir du bac à sable" @@ -8453,3 +8639,9 @@ msgstr "Aucun utilisateur spécifié ; utilisation de l’utilisateur de secours #, php-format msgid "%d entries in backup." msgstr "%d entrées dans la sauvegarde." + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "La description est trop longue (limitée à %d caractères maximum)." + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "Trop d’alias ! Maximum %d." diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index 852fc62353..5ceb45a932 100644 --- a/locale/ga/LC_MESSAGES/statusnet.po +++ b/locale/ga/LC_MESSAGES/statusnet.po @@ -9,18 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:09:00+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:18+0000\n" "Language-Team: Irish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ga\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=5; plural=(n == 1) ? 0 : ( (n == 2) ? 1 : ( (n < 7) ? " "2 : ( (n < 11) ? 3 : 4 ) ) );\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -124,6 +124,7 @@ msgstr "Non existe a etiqueta." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -136,7 +137,7 @@ msgstr "Non existe a etiqueta." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -309,11 +310,12 @@ msgstr "Non se puido actualizar o usuario." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -329,7 +331,7 @@ msgstr "Non se puido gardar o perfil." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -519,43 +521,53 @@ msgstr "Non se puido actualizar o usuario." msgid "Could not find target user." msgstr "Non se puido actualizar o usuario." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "O alcume debe ter só letras minúsculas e números, e sen espazos." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Non é un alcume válido." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "A páxina persoal semella que non é unha URL válida." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -564,10 +576,11 @@ msgstr "O nome completo é demasiado longo (max 255 car)." #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -578,9 +591,11 @@ msgstr[3] "O teu Bio é demasiado longo (max %d car.)." msgstr[4] "O teu Bio é demasiado longo (max %d car.)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -588,7 +603,12 @@ msgstr "A localización é demasiado longa (max 255 car.)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -607,15 +627,19 @@ msgstr "Etiqueta inválida: '%s'" #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "" @@ -721,18 +745,18 @@ msgid "Request token already authorized." msgstr "Non estás suscrito a ese perfil" #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -752,12 +776,13 @@ msgid "Database error inserting oauth_token_association." msgstr "Erro ó inserir o hashtag na BD: %s" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -806,6 +831,7 @@ msgstr "Sobre" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1065,106 +1091,139 @@ msgstr "Método da API en contrución." msgid "User not found." msgstr "Método da API non atopado" +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "Non existe a etiqueta." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Sen alcume." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Sen tamaño." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Tamaño inválido." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, fuzzy, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Podes actualizar a túa información do perfil persoal aquí" -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "O usuario non ten perfil." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Configuración de perfil" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Eliminar chío" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Subir" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +msgctxt "BUTTON" msgid "Crop" msgstr "" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 #, fuzzy msgid "No file uploaded." msgstr "Non se especificou ningún perfil." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "" -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Avatar actualizado." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Acounteceu un fallo ó actualizar o avatar." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 #, fuzzy msgid "Avatar deleted." msgstr "Avatar actualizado." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "Xa estas suscrito a estes usuarios:" -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Bloquear usuario" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1180,7 +1239,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 #, fuzzy @@ -1190,7 +1249,7 @@ msgstr "No" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 #, fuzzy msgid "Do not block this user" msgstr "Bloquear usuario" @@ -1201,7 +1260,7 @@ msgstr "Bloquear usuario" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 #, fuzzy @@ -1211,94 +1270,115 @@ msgstr "Si" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 #, fuzzy msgid "Block this user" msgstr "Bloquear usuario" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "Erro ao gardar información de bloqueo." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 #, fuzzy msgid "No such group." msgstr "Non existe a etiqueta." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, fuzzy, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%s e amigos" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "" -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 #, fuzzy msgid "Unblock user from group" msgstr "Desbloqueo de usuario fallido." -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Desbloquear" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 #, fuzzy msgid "Unblock this user" msgstr "Bloquear usuario" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Replies to %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Sen código de confirmación." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Confirmation code not found." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "¡Ese código de confirmación non é para ti!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "Tipo de enderezo %s non recoñecido" -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "Esa dirección xa foi confirmada." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1306,7 +1386,7 @@ msgstr "Esa dirección xa foi confirmada." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1314,28 +1394,33 @@ msgstr "Esa dirección xa foi confirmada." msgid "Couldn't update user." msgstr "Non se puido actualizar o usuario." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." msgstr "Non se pode eliminar a confirmación de email." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Direccións de correo confirmadas actualmente." -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "A dirección \"%s\" xa foi confirmada para a túa conta." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 #, fuzzy msgid "Conversation" msgstr "Código de confirmación." -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Chíos" @@ -1447,11 +1532,13 @@ msgstr "Non se pode eliminar este chíos." msgid "Delete this group" msgstr "Eliminar chío" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1774,53 +1861,53 @@ msgstr "" msgid "Could not update application." msgstr "Non se puido actualizar o usuario." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 #, fuzzy msgid "You must be logged in to create a group." msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 #, fuzzy msgid "You must be an admin to edit the group." msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "" -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "O teu Bio é demasiado longo (max %d car.)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Etiqueta inválida: '%s'" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 #, fuzzy msgid "Could not update group." msgstr "Non se puido actualizar o usuario." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 #, fuzzy msgid "Could not create aliases." msgstr "Non se puido crear o favorito." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 #, fuzzy msgid "Options saved." msgstr "Configuracións gardadas." @@ -2020,6 +2107,12 @@ msgstr "Non hai ningunha confirmación pendente para cancelar." msgid "That is the wrong email address." msgstr "Esa é unha enderezo IM incorrecto." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Non se pode eliminar a confirmación de email." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2202,19 +2295,23 @@ msgstr "Tes restrinxido o envio de chíos neste sitio." msgid "User already has this role." msgstr "O usuario non ten perfil." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "Non se especificou ningún perfil." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "Non se atopou un perfil con ese ID." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 #, fuzzy msgid "No group specified." @@ -2304,6 +2401,14 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "Podes actualizar a túa información do perfil persoal aquí" +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Subir" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" @@ -2441,16 +2546,19 @@ msgid "" "action.newgroup%%) yourself!" msgstr "" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "" -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 #, fuzzy msgid "User is not blocked from group." msgstr "O usuario bloqueoute." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Acounteceu un erro borrando o bloqueo." @@ -3063,10 +3171,12 @@ msgstr "A localización é demasiado longa (max 255 car.)." msgid "Could not create application." msgstr "Non se puido crear o favorito." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" @@ -3778,8 +3888,9 @@ msgstr "" "De 1 a 64 letras minúsculas ou númeors, nin espazos nin signos de puntuación" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Nome completo" @@ -3823,8 +3934,9 @@ msgid "Bio" msgstr "Bio" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4563,7 +4675,8 @@ msgstr "Invitación(s) enviada(s)." msgid "Description" msgstr "Subscricións" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Estatísticas" @@ -4581,6 +4694,11 @@ msgstr "" msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Eliminar chío" + #: actions/showapplication.php:261 msgid "Application info" msgstr "" @@ -4665,81 +4783,110 @@ msgstr "" msgid "This is a way to share what you like." msgstr "" -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, fuzzy, php-format msgid "%1$s group, page %2$d" msgstr "Tódalas subscricións" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "O usuario non ten perfil." -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 #, fuzzy msgid "Note" msgstr "Chíos" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 #, fuzzy msgid "Group actions" msgstr "Outras opcions" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Fonte para os amigos de %s" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Fonte para os amigos de %s" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Fonte de chíos para %s" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "Band. Saída para %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 #, fuzzy msgid "Members" msgstr "Membro dende" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 #, fuzzy msgid "(None)" msgstr "(nada)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Destacado" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Membro dende" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4753,7 +4900,10 @@ msgstr "" "(http://status.net/). [Únete agora](%%action.register%%) para compartir " "chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4766,24 +4916,31 @@ msgstr "" "(http://status.net/). [Únete agora](%%action.register%%) para compartir " "chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "Non existe a mensaxe." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "Só o emisor e destinatario poden ler esta mensaxe." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Mensaxe de %1$s en %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Mensaxe dende %1$s en %2$s" @@ -5234,12 +5391,14 @@ msgstr "" msgid "Save snapshot settings" msgstr "Configuracións de Twitter" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "Non estás suscrito a ese perfil" +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "Non se pode gardar a subscrición." @@ -6056,12 +6215,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Mensaxe de %1$s en %2$s" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "" #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -7273,7 +7432,8 @@ msgstr "" msgid "FOAF" msgstr "" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -7436,40 +7596,67 @@ msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" msgid "Unsupported image file format." msgstr "Formato de ficheiro de imaxe non soportado." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, fuzzy, php-format msgid "That file is too big. The maximum file size is %s." msgstr "Podes actualizar a túa información do perfil persoal aquí" -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Carga parcial." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Aconteceu un erro no sistema namentras se estaba cargando o ficheiro." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "Non é unha imaxe ou está corrupta." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Ningún chío." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 #, fuzzy msgid "Unknown file type" msgstr "tipo de ficheiro non soportado" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" #: lib/jabber.php:387 #, php-format @@ -8349,6 +8536,13 @@ msgstr "Acounteceu un erro borrando o bloqueo." msgid "Top posters" msgstr "" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Desbloquear" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "" @@ -8558,3 +8752,6 @@ msgstr "Non se especificou ningún perfil." #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "O teu Bio é demasiado longo (max %d car.)." diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index e321affb72..ab9374d1f1 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:09:02+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:19+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -117,6 +117,7 @@ msgstr "Esa páxina non existe." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -129,7 +130,7 @@ msgstr "Esa páxina non existe." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -309,11 +310,12 @@ msgstr "Non se puido actualizar o usuario." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -328,7 +330,7 @@ msgstr "Non se puido gardar o perfil." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -507,9 +509,11 @@ msgstr "Non se puido determinar o usuario de orixe." msgid "Could not find target user." msgstr "Non se puido atopar o usuario de destino." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" @@ -517,35 +521,43 @@ msgstr "" "en branco." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Ese alcume xa está en uso. Probe con outro." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "O formato do alcume non é correcto." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "O URL da páxina persoal non é correcto." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -554,10 +566,11 @@ msgstr "O nome completo é longo de máis (o máximo son 255 caracteres)." #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -565,9 +578,11 @@ msgstr[0] "A descrición é longa de máis (o máximo son %d caracteres)." msgstr[1] "A descrición é longa de máis (o máximo son %d caracteres)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -575,7 +590,12 @@ msgstr "A localidade é longa de máis (o máximo son 255 caracteres)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, fuzzy, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -591,15 +611,19 @@ msgstr "Pseudónimo incorrecto: \"%s\"." #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "O pseudónimo \"%s\" xa se está a usar. Proba con outro." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "O pseudónimo non pode coincidir co alcume." @@ -705,18 +729,18 @@ msgid "Request token already authorized." msgstr "Non está autorizado." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -737,12 +761,13 @@ msgstr "" "OAuth." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -797,6 +822,7 @@ msgstr "Conta" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1052,31 +1078,42 @@ msgstr "Método API en desenvolvemento." msgid "User not found." msgstr "Non se atopou o método da API." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "Non existe tal dato adxunto." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Sen alcume." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Sen tamaño." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Tamaño non válido." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." @@ -1084,74 +1121,97 @@ msgstr "" "Pode cargar o seu avatar personalizado. O tamaño máximo para o ficheiro é de " "%s." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "O usuario non ten perfil." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Configuración do avatar" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Orixinal" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Vista previa" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Borrar" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Cargar" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Recortar" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "Non se subiu ficheiro ningún." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "Escolla unha zona cadrada da imaxe para usala como avatar" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Perdéronse os datos do ficheiro." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Actualizouse o avatar." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Non se puido actualizar o avatar." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "Borrouse o avatar." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "Xa bloqueou ese usuario." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Bloquear o usuario" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1167,7 +1227,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1176,7 +1236,7 @@ msgstr "Non" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Non bloquear este usuario" @@ -1186,7 +1246,7 @@ msgstr "Non bloquear este usuario" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1195,90 +1255,111 @@ msgstr "Si" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Bloquear este usuario" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "Non se puido gardar a información do bloqueo." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "Non existe tal grupo." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "%s perfís bloqueados" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s perfís bloqueados, páxina %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "Unha lista de usuarios bloqueados fronte á unión a este grupo." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Desbloquear o usuario do grupo" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Desbloquear" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Desbloquear este usuario" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Publicar en %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Sen código de confirmación." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Non se atopou o código de confirmación." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "Ese código de confirmación non é para vostede!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "Non se recoñeceu o tipo de enderezo %s." -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "Ese enderezo xa se confirmou." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1286,7 +1367,7 @@ msgstr "Ese enderezo xa se confirmou." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1294,27 +1375,32 @@ msgstr "Ese enderezo xa se confirmou." msgid "Couldn't update user." msgstr "Non se puido actualizar o usuario." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." -msgstr "Non se puido borrar a confirmación por correo electrónico." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." +msgstr "Non se puido borrar a confirmación por mensaxería instantánea." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Confirmar o enderezo" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Confirmouse o enderezo \"%s\" para a súa conta." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Conversa" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Notas" @@ -1425,11 +1511,13 @@ msgstr "Non borrar esta nota" msgid "Delete this group" msgstr "Borrar o usuario" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1734,49 +1822,49 @@ msgstr "O URL do retorno de chamada é incorrecto." msgid "Could not update application." msgstr "Non se puido actualizar a aplicación." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Editar o grupo %s" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Ten que iniciar sesión para crear un grupo." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Ten que ser administrador para editar o grupo." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Utilice este formulario para editar o grupo." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "A descrición é longa de máis (o máximo son %d caracteres)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Demasiados pseudónimos! O número máximo é %d." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Pseudónimo inválido: \"%s\"" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Non se puido actualizar o grupo." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Non se puideron crear os pseudónimos." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Gardáronse as preferencias." @@ -1975,6 +2063,12 @@ msgstr "Non hai ningunha confirmación pendente que cancelar." msgid "That is the wrong email address." msgstr "Ese enderezo de correo electrónico é incorrecto." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Non se puido borrar a confirmación por correo electrónico." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2153,19 +2247,23 @@ msgstr "Non pode concederlles roles aos usuarios neste sitio." msgid "User already has this role." msgstr "O usuario xa ten este rol." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "Non se especificou ningún perfil." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "Ningún perfil ten esa ID." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "Non se especificou ningún grupo." @@ -2252,6 +2350,14 @@ msgstr "" "Pode cargar un logo para o seu grupo. O tamaño máximo para o ficheiro é de %" "s." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Cargar" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Recortar" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Escolla unha zona cadrada da imaxe para usala como logo." @@ -2393,15 +2499,18 @@ msgstr "" "Por que non [rexistrar unha conta](%%action.register%%) e [crear o grupo](%%" "action.newgroup%%)?" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "Só os administradores poden readmitir a membros do grupo." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "O usuario non está excluído do grupo." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Houbo un erro ao facer efectiva a readmisión." @@ -3001,10 +3110,12 @@ msgstr "A organización é longa de máis (o límite é de 255 caracteres)." msgid "Could not create application." msgstr "Non se puido crear a aplicación." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Novo grupo" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Utilice o seguinte formulario para crear un novo grupo." @@ -3714,8 +3825,9 @@ msgstr "" "espazos, tiles ou eñes" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Nome completo" @@ -3755,8 +3867,9 @@ msgid "Bio" msgstr "Biografía" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4490,7 +4603,8 @@ msgstr "Organización" msgid "Description" msgstr "Descrición" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Estatísticas" @@ -4508,6 +4622,11 @@ msgstr "Accións da aplicación" msgid "Reset key & secret" msgstr "Restablecer o contrasinal ou a pregunta secreta" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Borrar" + #: actions/showapplication.php:261 msgid "Application info" msgstr "Información da aplicación" @@ -4602,77 +4721,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Isto é un modo de compartir o que lle gusta." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "Grupo %s" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "Grupo %1$s, páxina %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Perfil do grupo" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Nota" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "Pseudónimos" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Accións do grupo" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Fonte de novas das notas do grupo %s (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Fonte de novas das notas do grupo %s (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Fonte de novas das notas do grupo %s (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "Amigo dun amigo para o grupo %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Membros" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Ningún)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Todos os membros" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Creado" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Membros" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4688,7 +4836,10 @@ msgstr "" "[Únase agora](%%%%action.register%%%%) para pasar a formar parte deste grupo " "e de moitos máis! ([Máis información](%%%%doc.help%%%%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4701,24 +4852,31 @@ msgstr "" "baseado na ferramenta de software libre [StatusNet](http://status.net/). Os " "seus membros comparten mensaxes curtas sobre as súas vidas e intereses. " -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Administradores" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "Non se atopou esa mensaxe." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "Esta mensaxe só a poden ler o destinatario e mais o remitente." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Mensaxe a %1$s en %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Mensaxe de %1$s en %2$s" @@ -5168,12 +5326,14 @@ msgstr "As instantáneas enviaranse a este URL" msgid "Save snapshot settings" msgstr "Gardar a configuración das instantáneas" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "Non está subscrito a ese perfil." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "Non se puido gardar a subscrición." @@ -5986,12 +6146,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Benvido a %1$s, @%2$s!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "Non se estableceu ningún usuario único para o modo de usuario único." #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -7166,7 +7326,8 @@ msgstr "Atom" msgid "FOAF" msgstr "Amigo dun amigo" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "Fontes de novas" @@ -7330,39 +7491,57 @@ msgstr "Esta páxina non está dispoñible nun formato axeitado para vostede" msgid "Unsupported image file format." msgstr "Non se soporta o formato da imaxe." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "Ese ficheiro é grande de máis. O tamaño máximo por ficheiro son %s." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Carga parcial." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Houbo un erro no sistema ao cargar o ficheiro." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "O ficheiro está mal ou non é unha imaxe." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Perdeuse o noso ficheiro." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Non se coñece o tipo de ficheiro" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "MB" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "MB" +msgstr[1] "MB" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "kB" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "kB" +msgstr[1] "kB" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" #: lib/jabber.php:387 #, php-format @@ -8262,6 +8441,13 @@ msgstr "Houbo un erro ao abrir o arquivo do tema visual." msgid "Top posters" msgstr "Os que máis publican" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Desbloquear" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "Deixar de illar" @@ -8443,3 +8629,9 @@ msgstr "Non se especificou ningún usuario; emprégase o usuario de reserva." #, php-format msgid "%d entries in backup." msgstr "%d entradas na reserva." + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "A descrición é longa de máis (o máximo son %d caracteres)." + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "Demasiados pseudónimos! O número máximo é %d." diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index bbb11a4979..89d8f334b7 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -11,18 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:09:03+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:21+0000\n" "Language-Team: Upper Sorbian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hsb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : (n%100==3 || " "n%100==4) ? 2 : 3)\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -118,6 +118,7 @@ msgstr "Strona njeeksistuje." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -130,7 +131,7 @@ msgstr "Strona njeeksistuje." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -300,11 +301,12 @@ msgstr "Wužiwar njeje so dał aktualizować." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -319,7 +321,7 @@ msgstr "Profil njeje so składować dał." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -498,44 +500,54 @@ msgstr "Žórłowy wužiwar njeda so postajić." msgid "Could not find target user." msgstr "Cilowy wužiwar njeda so namakać." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Přimjeno smě jenož małe pismiki a cyfry wobsahować. Mjezery njejsu dowolene." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Přimjeno so hižo wužiwa. Spytaj druhe." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Žane płaćiwe přimjeno." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Startowa strona njeje płaćiwy URL." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -544,10 +556,11 @@ msgstr "Dospołne mjeno je předołho (maks. 255 znamješkow)." #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -557,9 +570,11 @@ msgstr[2] "Wopisanje je předołho (maks. %d znamješkow)." msgstr[3] "Wopisanje je předołho (maks. %d znamješkow)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -567,7 +582,12 @@ msgstr "Městno je předołho (maks. 255 znamješkow)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, fuzzy, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -585,15 +605,19 @@ msgstr "Njepłaćiwy alias: \"%s\"." #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias \"%s\" so hižo wužiwa. Spytaj druhi." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "Alias njemóže samsny kaž přimjeno być." @@ -699,18 +723,18 @@ msgid "Request token already authorized." msgstr "Njejsy awtorizowany." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -729,12 +753,13 @@ msgid "Database error inserting oauth_token_association." msgstr "Zmylk datoweje banki při zasunjenju wužiwarja OAuth-aplikacije." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -783,6 +808,7 @@ msgstr "Konto" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1039,105 +1065,139 @@ msgstr "API-metoda njenamakana." msgid "User not found." msgstr "API-metoda njenamakana." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "Přiwěšk njeeksistuje." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Žane přimjeno." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Žana wulkosć." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Njepłaćiwa wulkosć." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Awatar" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" "Móžeš swój wosobinski awatar nahrać. Maksimalna datajowa wulkosć je %s." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Wužiwar bjez hodźaceho so profila." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Nastajenja awatara" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Original" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Přehlad" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Zničić" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Nahrać" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Přirězać" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "Žana dataja nahrata." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Naše datajowe daty su so zhubili." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Awatar zaktualizowany." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Aktualizowanje awatara je so njeporadźiło." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "Awatar zničeny." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "Sy tutoho wužiwarja hižo zablokował." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Wužiwarja blokować" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1150,7 +1210,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1159,7 +1219,7 @@ msgstr "Ně" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Tutoho wužiwarja njeblokować" @@ -1169,7 +1229,7 @@ msgstr "Tutoho wužiwarja njeblokować" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1178,92 +1238,113 @@ msgstr "Haj" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Tutoho wužiwarja blokować" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 #, fuzzy msgid "Failed to save block information." msgstr "Njeje móžno, sydłowu zdźělenku składować." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "Skupina njeeksistuje." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "%s je profile zablokował" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s zablokowa profile, stronu %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 #, fuzzy msgid "A list of the users blocked from joining this group." msgstr "Lisćina wužiwarjow w tutej skupinje." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Wužiwarja za skupinu wotblokować" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Wotblokować" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Tutoho wužiwarja wotblokować" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Na %s pósłać" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Žadyn wobkrućenski kod." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Wobkrućenski kod njenamakany." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "Tutón wobkrućenski kod njeje za tebje!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "Njespóznaty adresowy typ %s." -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "Tuta adresa bu hižo wobkrućena." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1271,7 +1352,7 @@ msgstr "Tuta adresa bu hižo wobkrućena." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1279,27 +1360,32 @@ msgstr "Tuta adresa bu hižo wobkrućena." msgid "Couldn't update user." msgstr "Wužiwar njeda aktualizować." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." -msgstr "E-mejlowe wobkrućenje njeda so zhašeć." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." +msgstr "IM-wobkrućenje njeda so zhašeć." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Adresu wobkrućić" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Adresa \"%s\" bu za twoje konto wobkrućena." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Konwersacija" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Zdźělenki" @@ -1404,11 +1490,13 @@ msgstr "Tutu zdźělenku njewušmórnyć" msgid "Delete this group" msgstr "Tutoho wužiwarja wušmórnyć" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1711,49 +1799,49 @@ msgstr "URL žórła płaćiwy njeje." msgid "Could not update application." msgstr "Aplikacija njeda so aktualizować." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Skupinu %s wobdźěłać" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Dyrbiš přizjewjeny być, zo by skupinu wutworił." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Dyrbiš administrator być, zo by skupinu wobdźěłał." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Wuž tutón formular, zo by skupinu wobdźěłał." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Wopisanje je předołho (maks. %d znamješkow)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Přewjele aliasow! Maksimum: %d." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Njepłaćiwy alias: \"%s\"" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Skupina njeje so dała aktualizować." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Aliasy njejsu so dali wutworić." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Opcije składowane." @@ -1943,6 +2031,12 @@ msgstr "IM-wobkrućenje přetorhnjene." msgid "That is the wrong email address." msgstr "To je wopačna e-mejlowa adresa." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "E-mejlowe wobkrućenje njeda so zhašeć." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2118,19 +2212,23 @@ msgstr "Njemóžeš wužiwarske róle na tutym sydle garantować." msgid "User already has this role." msgstr "Wužiwar hižo ma tutu rólu." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "Žadyn profil podaty." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "Žadyn profil z tym ID." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "Žana skupina podata." @@ -2212,6 +2310,14 @@ msgstr "" "Móžeš logowy wobraz za swoju skupinu nahrać. Maksimalna datajowa wulkosć je %" "s." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Nahrać" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Přirězać" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" @@ -2345,15 +2451,18 @@ msgid "" "action.newgroup%%) yourself!" msgstr "" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "Jenož administrator móže skupinskich čłonow wotblokować." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "Wužiwar njeje zablokowany za skupinu." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Zmylk při wotstronjenju blokowanja." @@ -2916,10 +3025,12 @@ msgstr "Mjeno organizacije je předołho (maks. 255 znamješkow)." msgid "Could not create application." msgstr "Aplikacija njeda so wutworić." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Nowa skupina" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Wužij tutón formular, zo by nowu skupinu wutworił." @@ -3616,8 +3727,9 @@ msgstr "" "Přimjeno smě jenož małe pismiki a cyfry wobsahować. Mjezery njejsu dowolene." #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Dospołne mjeno" @@ -3659,8 +3771,9 @@ msgid "Bio" msgstr "Biografija" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4342,7 +4455,8 @@ msgstr "Organizacija" msgid "Description" msgstr "Wopisanje" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Statistika" @@ -4360,6 +4474,11 @@ msgstr "Aplikaciske akcije" msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Zničić" + #: actions/showapplication.php:261 msgid "Application info" msgstr "Aplikaciske informacije" @@ -4444,78 +4563,107 @@ msgstr "" msgid "This is a way to share what you like." msgstr "" -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "skupina %s" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "%1$s skupina, strona %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Skupinski profil" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 #, fuzzy msgid "Note" msgstr "Žadyn" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "Aliasy" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Skupinske akcije" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Powěsćowy kanal za %1$s je %2$s (RSS 1.0) markěrował" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Powěsćowy kanal za %1$s je %2$s (RSS 1.0) markěrował" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Powěsćowy kanal za %1$s je %2$s (RSS 1.0) markěrował" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "FOAF za %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Čłonojo" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Žadyn)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Wšitcy čłonojo" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Wutworjeny" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Čłonojo" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4525,7 +4673,10 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4534,25 +4685,32 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Administratorojo" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "Powěsć njeeksistuje." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 #, fuzzy msgid "Only the sender and recipient may read this message." msgstr "Jenož wužiwar móže swoje póstowe kašćiki čitać." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Powěsć do %1$s na %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Powěsć wot %1$s na %2$s" @@ -4986,12 +5144,14 @@ msgstr "" msgid "Save snapshot settings" msgstr "Nastajenja wobrazowkoweho fota składować" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "Njejsy tón profil abonował." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "Abonement njeda so składować." @@ -5770,12 +5930,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Witaj do %1$s, @%2$s!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "Žadyn jednotliwy wužiwar za modus jednotliweho wužiwarja definowany." #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -6913,7 +7073,8 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -7078,39 +7239,63 @@ msgstr "" msgid "Unsupported image file format." msgstr "Njepodpěrowany wobrazowy format." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "Tuta dataja je přewulka. Maksimalna datajowa wulkosć je %s." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Dźělne nahraće." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Systemowy zmylk při nahrawanju dataje." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "Žady wobraz abo žana wobškodźena dataja." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Naša dataja je so zhubiła." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Njeznaty datajowy typ" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "MB" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "MB" +msgstr[1] "MB" +msgstr[2] "MB" +msgstr[3] "MB" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "KB" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "KB" +msgstr[1] "KB" +msgstr[2] "KB" +msgstr[3] "KB" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lib/jabber.php:387 #, php-format @@ -7905,6 +8090,13 @@ msgstr "Zmylk při wočinjenju šatoweho archiwa." msgid "Top posters" msgstr "" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Wotblokować" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "" @@ -8107,3 +8299,9 @@ msgstr "Žadyn wužiwarski ID podaty." #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "Wopisanje je předołho (maks. %d znamješkow)." + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "Přewjele aliasow! Maksimum: %d." diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index bf7613336e..acf0eaf40e 100644 --- a/locale/hu/LC_MESSAGES/statusnet.po +++ b/locale/hu/LC_MESSAGES/statusnet.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:09:05+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:22+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-core\n" @@ -120,6 +120,7 @@ msgstr "Nincs ilyen lap." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -132,7 +133,7 @@ msgstr "Nincs ilyen lap." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -306,11 +307,12 @@ msgstr "Nem sikerült frissíteni a felhasználót." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -325,7 +327,7 @@ msgstr "Nem sikerült menteni a profilt." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -502,43 +504,53 @@ msgstr "Nem sikerült megállapítani a forrás felhasználót." msgid "Could not find target user." msgstr "A cél felhasználó nem található." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "A becenév csak kisbetűket és számokat tartalmazhat, szóközök nélkül." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "A becenév már foglalt. Próbálj meg egy másikat." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Nem érvényes becenév." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "A honlap érvénytelen URL-cím." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -547,10 +559,11 @@ msgstr "A teljes név túl hosszú (legfeljebb 255 karakter lehet)." #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -558,9 +571,11 @@ msgstr[0] "A leírás túl hosszú (legfeljebb %d karakter lehet)." msgstr[1] "A leírás túl hosszú (legfeljebb %d karakter lehet)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -568,7 +583,12 @@ msgstr "A hely túl hosszú (legfeljebb 255 karakter lehet)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, fuzzy, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -584,15 +604,19 @@ msgstr "Érvénytelen álnév: „%s”." #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "A(z) „%s” álnév már használatban van. Próbálj meg egy másikat." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "Az álnév nem egyezhet meg a becenévvel." @@ -697,18 +721,18 @@ msgid "Request token already authorized." msgstr "Nincs jogosultságod." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -726,12 +750,13 @@ msgid "Database error inserting oauth_token_association." msgstr "" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -780,6 +805,7 @@ msgstr "Kontó" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1031,104 +1057,138 @@ msgstr "Az API-metódus fejlesztés alatt áll." msgid "User not found." msgstr "Az API-metódus nem található." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "Nincs ilyen csatolmány." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Nincs becenév." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Nincs méret." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Érvénytelen méret." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Feltöltheted a személyes avatarodat. A fájl maximális mérete %s lehet." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "" -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Avatarbeállítások" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Eredeti" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Előnézet" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Törlés" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Feltöltés" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Levágás" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "Nincs feltöltve fájl." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "Válassz ki egy négyzet alakú területet a képből, ami az avatarod lesz" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Elvesztettük az adatainkat." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Avatar frissítve." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Nem sikerült felölteni az avatart." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "Avatar törölve." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "Már blokkoltad azt a felhasználót." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Felhasználó blokkolása" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1141,7 +1201,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1150,7 +1210,7 @@ msgstr "Nem" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Ne blokkoljuk ezt a felhasználót" @@ -1160,7 +1220,7 @@ msgstr "Ne blokkoljuk ezt a felhasználót" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1169,90 +1229,111 @@ msgstr "Igen" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Felhasználó blokkolása" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "Nem sikerült elmenteni a blokkolási információkat." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "Nincs ilyen csoport." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "A csoportból blokkolt felhasználók listája" -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Oldjuk fel a felhasználó blokkolását a csoportban" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Blokk feloldása" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Ezen felhasználó blokkjának feloldása" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Küldés ide: %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Nincs megerősítő kód." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "A megerősítő kód nem található." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "Ez a megerősítő kód nem hozzád tartozik!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "" -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "Ez a cím már meg van erősítve." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1260,7 +1341,7 @@ msgstr "Ez a cím már meg van erősítve." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1268,27 +1349,32 @@ msgstr "Ez a cím már meg van erősítve." msgid "Couldn't update user." msgstr "Nem sikerült frissíteni a felhasználót." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." msgstr "Nem sikerült törölni az e-mail cím megerősítését." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Cím ellenőrzése" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "A(z) „%s” cím meg van erősítve a fiókodhoz." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Beszélgetés" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Hírek" @@ -1396,11 +1482,13 @@ msgstr "Ne töröljük ezt a hírt" msgid "Delete this group" msgstr "Töröljük ezt a felhasználót" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1700,49 +1788,49 @@ msgstr "" msgid "Could not update application." msgstr "" -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "%s csoport szerkesztése" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Csoport létrehozásához be kell jelentkezned." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "" -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Ezen űrlap segítségével szerkesztheted a csoportot." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "A leírás túl hosszú (legfeljebb %d karakter lehet)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Túl sok álnév! Legfeljebb %d lehet." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Érvénytelen álnév: „%s”" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Nem sikerült a csoport frissítése." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Nem sikerült létrehozni az álneveket." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Beállítások elmentve." @@ -1937,6 +2025,12 @@ msgstr "Nincs várakozó megerősítés, amit vissza lehetne vonni." msgid "That is the wrong email address." msgstr "" +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Nem sikerült törölni az e-mail cím megerősítését." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2113,19 +2207,23 @@ msgstr "" msgid "User already has this role." msgstr "A felhasználónak már van ilyen szerepe." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "Nincs profil megadva." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "Nincs ilyen azonosítóval rendelkező profil." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "Nincs csoport megadva." @@ -2209,6 +2307,14 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Feltöltés" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Levágás" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" @@ -2345,15 +2451,18 @@ msgid "" "action.newgroup%%) yourself!" msgstr "" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "" -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "A felhasználó nincs blokkolva a csoportból." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Hiba a blokkolás feloldása közben." @@ -2904,10 +3013,12 @@ msgstr "A szervezet túl hosszú (255 karakter lehet)." msgid "Could not create application." msgstr "Nem sikerült létrehozni az alkalmazást." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Új csoport" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Ezen az űrlapon tudsz új csoportot létrehozni." @@ -3600,8 +3711,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 kisbetű vagy számjegy, nem lehet benne írásjel vagy szóköz" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Teljes név" @@ -3643,8 +3755,9 @@ msgid "Bio" msgstr "Életrajz" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4327,7 +4440,8 @@ msgstr "Szervezet" msgid "Description" msgstr "Leírás" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Statisztika" @@ -4345,6 +4459,11 @@ msgstr "" msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Törlés" + #: actions/showapplication.php:261 msgid "Application info" msgstr "" @@ -4428,77 +4547,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Ez az egyik módja annak, hogy megoszd amit kedvelsz." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "%s csoport" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "%1$s csoport, %2$d. oldal" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Csoportprofil" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL-cím" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Megjegyzés" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "Álnevek" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Csoport-tevékenységek" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s csoport RSS 1.0 hírcsatornája" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s csoport RSS 2.0 hírcsatornája" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "%s csoport Atom hírcsatornája" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "FOAF a %s csoportnak" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Tagok" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(nincs)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Összes tag" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Létrehoztuk" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Tagok" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4514,7 +4662,10 @@ msgstr "" "[Csatlakozz](%%%%action.register%%%%), és légy tagja ennek a csoportnak - és " "még sok másiknak is! ([Tudj meg többet](%%%%doc.help%%%%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4523,24 +4674,31 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Adminisztrátorok" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "Nincs ilyen üzenet." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "Csak a küldő és a címzett olvashatja ezt az üzenetet." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "" @@ -4970,12 +5128,14 @@ msgstr "" msgid "Save snapshot settings" msgstr "" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "" +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "" @@ -5738,12 +5898,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "" #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -6856,7 +7016,8 @@ msgstr "Atom" msgid "FOAF" msgstr "" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -7018,39 +7179,57 @@ msgstr "" msgid "Unsupported image file format." msgstr "Nem támogatott képformátum." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "Az a fájl túl nagy. A maximális fájlméret %s." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Részleges feltöltés." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "" -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "" -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Elvesztettük a fájlt." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Ismeretlen fájltípus" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "MB" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "MB" +msgstr[1] "MB" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "kB" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "kB" +msgstr[1] "kB" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" #: lib/jabber.php:387 #, php-format @@ -7901,6 +8080,13 @@ msgstr "" msgid "Top posters" msgstr "" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Blokk feloldása" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "" @@ -8080,3 +8266,9 @@ msgstr "" #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "A leírás túl hosszú (legfeljebb %d karakter lehet)." + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "Túl sok álnév! Legfeljebb %d lehet." diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index 6314e101d5..e78db5e5b5 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:09:06+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:23+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -115,6 +115,7 @@ msgstr "Pagina non existe." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -127,7 +128,7 @@ msgstr "Pagina non existe." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -307,11 +308,12 @@ msgstr "Non poteva actualisar le usator." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -326,7 +328,7 @@ msgstr "Non poteva salveguardar le profilo." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -503,43 +505,53 @@ msgstr "Non poteva determinar le usator de origine." msgid "Could not find target user." msgstr "Non poteva trovar le usator de destination." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Le pseudonymo pote solmente haber minusculas e numeros, sin spatios." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Pseudonymo ja in uso. Proba un altere." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Non un pseudonymo valide." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Le pagina personal non es un URL valide." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 msgid "Full name is too long (maximum 255 characters)." msgstr "Le nomine complete es troppo longe (maximo 255 characteres)." @@ -547,10 +559,11 @@ msgstr "Le nomine complete es troppo longe (maximo 255 characteres)." #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -558,16 +571,23 @@ msgstr[0] "Description es troppo longe (maximo %d characteres)." msgstr[1] "Description es troppo longe (maximo %d characteres)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 msgid "Location is too long (maximum 255 characters)." msgstr "Loco es troppo longe (maximo 255 characteres)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -583,15 +603,19 @@ msgstr "Alias invalide: \"%s\"." #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Le alias \"%s\" es ja in uso. Proba un altere." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "Le alias non pote esser identic al pseudonymo." @@ -694,18 +718,18 @@ msgid "Request token already authorized." msgstr "Indicio de requesta jam autorisate." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -724,12 +748,13 @@ msgstr "" "Error del base de datos durante le insertion de oauth_token_association." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -783,6 +808,7 @@ msgstr "Conto" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1036,105 +1062,139 @@ msgstr "Methodo API in construction." msgid "User not found." msgstr "Usator non trovate." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "Annexo non existe." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Nulle pseudonymo." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Nulle dimension." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Dimension invalide." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" "Tu pote incargar tu avatar personal. Le dimension maximal del file es %s." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Usator sin profilo correspondente" -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Configuration del avatar" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Original" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Previsualisation" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Deler" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Incargar" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Taliar" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "Nulle file incargate." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "Selige un area quadrate del imagine pro facer lo tu avatar" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Datos del file perdite." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Avatar actualisate." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Actualisation del avatar fallite." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "Avatar delite." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "Tu ha ja blocate iste usator." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Blocar usator" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1150,7 +1210,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1159,7 +1219,7 @@ msgstr "No" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Non blocar iste usator" @@ -1169,7 +1229,7 @@ msgstr "Non blocar iste usator" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1178,90 +1238,111 @@ msgstr "Si" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Blocar iste usator" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "Falleva de salveguardar le information del blocada." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "Gruppo non existe." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "%s profilos blocate" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s profilos blocate, pagina %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "Un lista del usatores excludite del membrato de iste gruppo." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Disblocar le usator del gruppo" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Disblocar" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Disblocar iste usator" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Publicar in %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Nulle codice de confirmation." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Codice de confirmation non trovate." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "Iste codice de confirmation non es pro te!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "Le typo de adresse %s non es recognoscite." -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "Iste adresse ha ja essite confirmate." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1269,7 +1350,7 @@ msgstr "Iste adresse ha ja essite confirmate." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1277,27 +1358,32 @@ msgstr "Iste adresse ha ja essite confirmate." msgid "Couldn't update user." msgstr "Non poteva actualisar usator." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." -msgstr "Non poteva deler confirmation de e-mail." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." +msgstr "Non poteva deler confirmation de messageria instantanee." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Confirmar adresse" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Le adresse \"%s\" ha essite confirmate pro tu conto." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Conversation" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Notas" @@ -1403,11 +1489,13 @@ msgstr "Non deler iste gruppo" msgid "Delete this group" msgstr "Deler iste gruppo" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1709,49 +1797,49 @@ msgstr "Le URL de retorno non es valide." msgid "Could not update application." msgstr "Non poteva actualisar application." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Modificar gruppo %s" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Tu debe aperir un session pro crear un gruppo." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Tu debe esser administrator pro modificar le gruppo." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Usa iste formulario pro modificar le gruppo." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Description es troppo longe (max %d charachteres)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Troppo de aliases! Maximo: %d." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Alias invalide: \"%s\"" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Non poteva actualisar gruppo." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Non poteva crear aliases." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Optiones salveguardate." @@ -1944,6 +2032,12 @@ msgstr "Nulle confirmation pendente a cancellar." msgid "That is the wrong email address." msgstr "Iste adresse de e-mail es erronee." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Non poteva deler confirmation de e-mail." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2123,19 +2217,23 @@ msgstr "Tu non pote conceder rolos a usatores in iste sito." msgid "User already has this role." msgstr "Le usator ha ja iste rolo." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "Nulle profilo specificate." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "Non existe un profilo con iste ID." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "Nulle gruppo specificate." @@ -2222,6 +2320,14 @@ msgstr "" "Tu pote incargar un imagine pro le logotypo de tu gruppo. Le dimension " "maximal del file es %s." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Incargar" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Taliar" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Selige un area quadrate del imagine que devenira le logotypo." @@ -2364,15 +2470,18 @@ msgstr "" "Proque non [registrar un conto](%%action.register%%) e [crear le gruppo](%%" "action.newgroup%%) tu mesme?" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "Solmente un administrator pote disblocar membros de un gruppo." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "Le usator non es blocate del gruppo." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Error de remover le blocada." @@ -2963,10 +3072,12 @@ msgstr "Le organisation es troppo longe (maximo 255 characteres)." msgid "Could not create application." msgstr "Non poteva crear application." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Nove gruppo" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Usa iste formulario pro crear un nove gruppo." @@ -3658,8 +3769,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 minusculas o numeros, sin punctuation o spatios." #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Nomine complete" @@ -3698,8 +3810,9 @@ msgid "Bio" msgstr "Bio" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4420,7 +4533,8 @@ msgstr "Organisation" msgid "Description" msgstr "Description" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Statisticas" @@ -4438,6 +4552,11 @@ msgstr "Actiones de application" msgid "Reset key & secret" msgstr "Reinitialisar clave e secreto" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Deler" + #: actions/showapplication.php:261 msgid "Application info" msgstr "Info del application" @@ -4531,77 +4650,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Isto es un modo de condivider lo que te place." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "Gruppo %s" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "Gruppo %1$s, pagina %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Profilo del gruppo" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Nota" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "Aliases" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Actiones del gruppo" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Syndication de notas pro le gruppo %s (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Syndication de notas pro le gruppo %s (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Syndication de notas pro le gruppo %s (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "Amico de un amico pro le gruppo %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Membros" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Nulle)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Tote le membros" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Create" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Membros" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4616,7 +4764,10 @@ msgstr "" "lor vita e interesses. [Crea un conto](%%%%action.register%%%%) pro devenir " "parte de iste gruppo e multe alteres! ([Lege plus](%%%%doc.help%%%%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4629,24 +4780,31 @@ msgstr "" "[StatusNet](http://status.net/). Su membros condivide breve messages super " "lor vita e interesses. " -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Administratores" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "Message non existe." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "Solmente le expeditor e destinatario pote leger iste message." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Message a %1$s in %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Message de %1$s in %2$s" @@ -5093,12 +5251,14 @@ msgstr "Le instantaneos essera inviate a iste URL" msgid "Save snapshot settings" msgstr "Salveguardar configuration de instantaneos" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "Tu non es subscribite a iste profilo." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "Non poteva salveguardar le subscription." @@ -5909,12 +6069,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Benvenite a %1$s, @%2$s!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "Nulle signule usator definite pro le modo de singule usator." #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "Codice in modo de usator singule appellate sin esser activate." @@ -7083,7 +7243,8 @@ msgstr "Atom" msgid "FOAF" msgstr "Amico de un amico" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "Syndicationes" @@ -7243,39 +7404,57 @@ msgstr "Iste pagina non es disponibile in un formato que tu accepta" msgid "Unsupported image file format." msgstr "Formato de file de imagine non supportate." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "Iste file es troppo grande. Le dimension maximal es %s." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Incargamento partial." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Error de systema durante le incargamento del file." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "Le file non es un imagine o es defectuose." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "File perdite." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Typo de file incognite" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "MB" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "MB" +msgstr[1] "MB" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "KB" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "KB" +msgstr[1] "KB" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" #: lib/jabber.php:387 #, php-format @@ -8176,6 +8355,13 @@ msgstr "Error durante le apertura del archivo del apparentia." msgid "Top posters" msgstr "Qui scribe le plus" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Disblocar" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "Retirar del cassa de sablo" @@ -8355,3 +8541,9 @@ msgstr "Nulle usator specificate; le usator de reserva es usate." #, php-format msgid "%d entries in backup." msgstr "%d entratas in copia de reserva." + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "Description es troppo longe (max %d charachteres)." + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "Troppo de aliases! Maximo: %d." diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index 94c7d592be..d2255523dc 100644 --- a/locale/is/LC_MESSAGES/statusnet.po +++ b/locale/is/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:09:08+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:24+0000\n" "Language-Team: Icelandic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: is\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -123,6 +123,7 @@ msgstr "Ekkert þannig merki." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -135,7 +136,7 @@ msgstr "Ekkert þannig merki." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -308,11 +309,12 @@ msgstr "Gat ekki uppfært notanda." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -328,7 +330,7 @@ msgstr "Gat ekki vistað persónulega síðu." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -513,43 +515,53 @@ msgstr "Gat ekki uppfært notanda." msgid "Could not find target user." msgstr "Gat ekki uppfært notanda." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Stuttnefni geta bara verið lágstafir og tölustafir en engin bil." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Ekki tækt stuttnefni." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Heimasíða er ekki gild vefslóð." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -558,10 +570,11 @@ msgstr "Fullt nafn er of langt (í mesta lagi 255 stafir)." #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -569,9 +582,11 @@ msgstr[0] "Staðsetning er of löng (í mesta lagi %d stafir)." msgstr[1] "Staðsetning er of löng (í mesta lagi %d stafir)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -579,7 +594,12 @@ msgstr "Staðsetning er of löng (í mesta lagi 255 stafir)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -595,15 +615,19 @@ msgstr "Ógilt merki: \"%s\"" #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "" @@ -712,18 +736,18 @@ msgid "Request token already authorized." msgstr "Þú ert ekki áskrifandi." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -743,12 +767,13 @@ msgid "Database error inserting oauth_token_association." msgstr "Gagnagrunnsvilla við innsetningu myllumerkis: %s" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -797,6 +822,7 @@ msgstr "Aðgangur" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1049,108 +1075,142 @@ msgstr "Aðferð í forritsskilum er í þróun." msgid "User not found." msgstr "Aðferð í forritsskilum fannst ekki!" +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." msgstr "Ekkert þannig merki." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Ekkert stuttnefni." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Engin stærð." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Ótæk stærð." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Mynd" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, fuzzy, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Notandi hefur enga persónulega síðu." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Stillingar fyrir mynd" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Upphafleg mynd" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Forsýn" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Eyða" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Hlaða upp" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Skera af" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 #, fuzzy msgid "No file uploaded." msgstr "Engin persónuleg síða tilgreind" -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "" "Veldu ferningslaga svæði á upphaflegu myndinni sem einkennismyndina þína" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Týndum skráargögnunum okkar" -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Mynd hefur verið uppfærð." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Mistókst að uppfæra mynd" -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 #, fuzzy msgid "Avatar deleted." msgstr "Mynd hefur verið uppfærð." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "Þú ert nú þegar í áskrift að þessum notendum:" -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Loka á notanda" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1163,7 +1223,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1172,7 +1232,7 @@ msgstr "Athugasemd" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 #, fuzzy msgid "Do not block this user" msgstr "Opna á þennan notanda" @@ -1183,7 +1243,7 @@ msgstr "Opna á þennan notanda" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 #, fuzzy @@ -1193,92 +1253,113 @@ msgstr "Já" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Loka á þennan notanda" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "Mistókst að vista upplýsingar um notendalokun" +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "Enginn þannig hópur." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, fuzzy, php-format msgid "%s blocked profiles" msgstr "Persónuleg síða notanda" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, fuzzy, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%s og vinirnir, síða %d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 #, fuzzy msgid "A list of the users blocked from joining this group." msgstr "Listi yfir notendur í þessum hóp." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 #, fuzzy msgid "Unblock user from group" msgstr "Mistókst að opna fyrir notanda." -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Opna" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Opna á þennan notanda" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Svör við %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Enginn staðfestingarlykill." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Staðfestingarlykill fannst ekki." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "Þessi staðfestingarlykill er ekki fyrir þig!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "Óþekkt gerð tölvupóstfangs %s" -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "Þetta tölvupóstfang hefur nú þegar verið staðfest." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1286,7 +1367,7 @@ msgstr "Þetta tölvupóstfang hefur nú þegar verið staðfest." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1294,29 +1375,34 @@ msgstr "Þetta tölvupóstfang hefur nú þegar verið staðfest." msgid "Couldn't update user." msgstr "Gat ekki uppfært notanda." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." msgstr "Gat ekki eytt tölvupóstsstaðfestingu." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Núverandi staðfesta tölvupóstfangið." -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "" "Þetta tölvupóstfang, \"%s\", hefur verið staðfest fyrir aðganginn þinn." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 #, fuzzy msgid "Conversation" msgstr "Staðfestingarlykill" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Babl" @@ -1425,11 +1511,13 @@ msgstr "Get ekki eytt þessu babli." msgid "Delete this group" msgstr "Eyða þessu babli" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1750,50 +1838,50 @@ msgstr "" msgid "Could not update application." msgstr "Gat ekki uppfært hóp." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Breyta hópnum %s" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Þú verður að hafa skráð þig inn til að búa til hóp." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Þú verður að hafa skráð þig inn til að búa til hóp." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Notaðu þetta eyðublað til að breyta hópnum." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Staðsetning er of löng (í mesta lagi %d stafir)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Ógilt merki: \"%s\"" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Gat ekki uppfært hóp." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 #, fuzzy msgid "Could not create aliases." msgstr "Gat ekki búið til uppáhald." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Valmöguleikar vistaðir." @@ -1991,6 +2079,12 @@ msgstr "Engin staðfesting í bið sem þarf að hætta við." msgid "That is the wrong email address." msgstr "Þetta er rangt snarskilaboðafang." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Gat ekki eytt tölvupóstsstaðfestingu." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2176,19 +2270,23 @@ msgstr "Það hefur verið lagt bann við babli frá þér á þessari síðu." msgid "User already has this role." msgstr "Notandi hefur enga persónulega síðu." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "Engin persónuleg síða tilgreind" -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "Engin persónulega síða með þessu einkenni" -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 #, fuzzy msgid "No group specified." @@ -2278,6 +2376,14 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Hlaða upp" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Skera af" + #: actions/grouplogo.php:365 #, fuzzy msgid "Pick a square area of the image to be the logo." @@ -2414,16 +2520,19 @@ msgid "" "action.newgroup%%) yourself!" msgstr "" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "" -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 #, fuzzy msgid "User is not blocked from group." msgstr "Notandinn hefur lokað á þig." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Vill kom upp við að aflétta notendalokun." @@ -3030,10 +3139,12 @@ msgstr "Staðsetning er of löng (í mesta lagi 255 stafir)." msgid "Could not create application." msgstr "Gat ekki búið til uppáhald." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Nýr hópur" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Notaðu þetta eyðublað til að búa til nýjan hóp." @@ -3745,8 +3856,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 lágstafir eða tölustafir, engin greinarmerki eða bil" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Fullt nafn" @@ -3789,8 +3901,9 @@ msgid "Bio" msgstr "Lýsing" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4515,7 +4628,8 @@ msgstr "Uppröðun" msgid "Description" msgstr "Lýsing" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Tölfræði" @@ -4533,6 +4647,11 @@ msgstr "" msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Eyða" + #: actions/showapplication.php:261 msgid "Application info" msgstr "" @@ -4617,78 +4736,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "" -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "%s hópurinn" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "Hópar, síða %d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Hópssíðan" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "Vefslóð" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Athugasemd" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Hópsaðgerðir" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "%s hópurinn" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Meðlimir" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Ekkert)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Allir meðlimir" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 #, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Í sviðsljósinu" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Meðlimir" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4698,7 +4845,10 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4707,25 +4857,32 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 #, fuzzy msgid "Admins" msgstr "Stjórnandi" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "Engin þannig skilaboð." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "Aðeins sendandi og móttakandi geta lesið þessi skilaboð." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Skilaboð til %1$s á %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Skilaboð frá %1$s á %2$s" @@ -5172,12 +5329,14 @@ msgstr "" msgid "Save snapshot settings" msgstr "Stillingar fyrir mynd" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "Þú ert ekki áskrifandi." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "Gat ekki vistað áskrift." @@ -5990,12 +6149,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Skilaboð til %1$s á %2$s" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "" #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -7156,7 +7315,8 @@ msgstr "" msgid "FOAF" msgstr "" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -7317,39 +7477,57 @@ msgstr "" msgid "Unsupported image file format." msgstr "Skráarsnið myndar ekki stutt." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, fuzzy, php-format msgid "That file is too big. The maximum file size is %s." msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Upphal að hluta til." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Kerfisvilla kom upp við upphal skráar." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "Annaðhvort ekki mynd eða þá að skráin er gölluð." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Týndum skránni okkar" -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Óþekkt skráargerð" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "" +msgstr[1] "" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" #: lib/jabber.php:387 #, php-format @@ -8161,6 +8339,13 @@ msgstr "Vill kom upp við að aflétta notendalokun." msgid "Top posters" msgstr "Aðalbablararnir" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Opna" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "" @@ -8348,3 +8533,6 @@ msgstr "Engin persónuleg síða tilgreind" #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "Staðsetning er of löng (í mesta lagi %d stafir)." diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index f7c8837312..8242d3244a 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:09:10+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:28+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -119,6 +119,7 @@ msgstr "Pagina inesistente." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -131,7 +132,7 @@ msgstr "Pagina inesistente." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -309,11 +310,12 @@ msgstr "Impossibile aggiornare l'utente." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -328,7 +330,7 @@ msgstr "Impossibile salvare il profilo." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -506,9 +508,11 @@ msgstr "Impossibile determinare l'utente sorgente." msgid "Could not find target user." msgstr "Impossibile trovare l'utente destinazione." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" @@ -516,35 +520,43 @@ msgstr "" "spazi." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Soprannome già in uso. Prova con un altro." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Non è un soprannome valido." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "L'indirizzo della pagina web non è valido." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -553,10 +565,11 @@ msgstr "Nome troppo lungo (max 255 caratteri)." #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -564,9 +577,11 @@ msgstr[0] "La descrizione è troppo lunga (max %d caratteri)." msgstr[1] "La descrizione è troppo lunga (max %d caratteri)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -574,7 +589,12 @@ msgstr "Ubicazione troppo lunga (max 255 caratteri)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, fuzzy, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -590,15 +610,19 @@ msgstr "Alias non valido: \"%s\"." #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "L'alias \"%s\" è già in uso. Prova con un altro." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "L'alias non può essere lo stesso del soprannome." @@ -704,18 +728,18 @@ msgid "Request token already authorized." msgstr "Autorizzazione non presente." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -735,12 +759,13 @@ msgid "Database error inserting oauth_token_association." msgstr "Errore nel database nell'inserire l'applicazione utente OAuth." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -795,6 +820,7 @@ msgstr "Account" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1047,105 +1073,139 @@ msgstr "Metodo delle API in lavorazione." msgid "User not found." msgstr "Metodo delle API non trovato." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "Nessun allegato." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Nessun soprannome." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Nessuna dimensione." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Dimensione non valida." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Immagine" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" "Puoi caricare la tua immagine personale. La dimensione massima del file è %s." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Utente senza profilo corrispondente." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Impostazioni immagine" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Originale" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Anteprima" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Elimina" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Carica" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Ritaglia" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "Nessun file caricato." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "Scegli un'area quadrata per la tua immagine personale" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Perso il nostro file di dati." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Immagine aggiornata." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Aggiornamento dell'immagine non riuscito." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "Immagine eliminata." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "Hai già bloccato quell'utente." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Blocca utente" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1161,7 +1221,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1170,7 +1230,7 @@ msgstr "No" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Non bloccare questo utente" @@ -1180,7 +1240,7 @@ msgstr "Non bloccare questo utente" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1189,90 +1249,111 @@ msgstr "Sì" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Blocca questo utente" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "Salvataggio delle informazioni per il blocco non riuscito." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "Nessuna gruppo." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "Profili bloccati di %s" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "Profili bloccati di %1$s, pagina %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "Un elenco degli utenti a cui è bloccato l'accesso a questo gruppo." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Sblocca l'utente dal gruppo" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Sblocca" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Sblocca questo utente" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Invia a %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Nessun codice di conferma." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Codice di conferma non trovato." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "Quel codice di conferma non è per te!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "Tipo di indirizzo %s non riconosciuto." -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "Quell'indirizzo è già stato confermato." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1280,7 +1361,7 @@ msgstr "Quell'indirizzo è già stato confermato." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1288,27 +1369,32 @@ msgstr "Quell'indirizzo è già stato confermato." msgid "Couldn't update user." msgstr "Impossibile aggiornare l'utente." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." -msgstr "Impossibile eliminare l'email di conferma." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." +msgstr "Impossibile eliminare la conferma della messaggistica." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Conferma indirizzo" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "L'indirizzo \"%s\" è stato confermato per il tuo account." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Conversazione" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Messaggi" @@ -1418,11 +1504,13 @@ msgstr "Non eliminare il messaggio" msgid "Delete this group" msgstr "Elimina questo utente" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1726,49 +1814,49 @@ msgstr "L'URL di callback non è valido." msgid "Could not update application." msgstr "Impossibile aggiornare l'applicazione." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Modifica il gruppo %s" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Devi eseguire l'accesso per creare un gruppo." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Devi essere amministratore per modificare il gruppo." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Usa questo modulo per modificare il gruppo." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "La descrizione è troppo lunga (max %d caratteri)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Troppi alias! Massimo %d." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Alias non valido: \"%s\"" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Impossibile aggiornare il gruppo." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Impossibile creare gli alias." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Opzioni salvate." @@ -1964,6 +2052,12 @@ msgstr "Nessuna conferma da annullare." msgid "That is the wrong email address." msgstr "Quello è l'indirizzo email sbagliato." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Impossibile eliminare l'email di conferma." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2144,19 +2238,23 @@ msgstr "Non puoi concedere i ruoli agli utenti su questo sito." msgid "User already has this role." msgstr "L'utente ricopre già questo ruolo." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "Nessun profilo specificato." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "Nessun profilo con quel ID." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "Nessun gruppo specificato." @@ -2243,6 +2341,14 @@ msgstr "" "Puoi caricare un'immagine per il logo del tuo gruppo. La dimensione massima " "del file è di %s." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Carica" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Ritaglia" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Scegli un'area quadrata dell'immagine per il logo." @@ -2385,15 +2491,18 @@ msgstr "" "Perché non [crei un account](%%action.register%%) e [crei tu il gruppo](%%" "action.newgroup%%)!" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "Solo gli amministratori possono sbloccare i membri del gruppo." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "L'utente non è bloccato dal gruppo." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Errore nel rimuovere il blocco." @@ -2989,10 +3098,12 @@ msgstr "L'organizzazione è troppo lunga (max 255 caratteri)." msgid "Could not create application." msgstr "Impossibile creare l'applicazione." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Nuovo gruppo" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Usa questo modulo per creare un nuovo gruppo." @@ -3700,8 +3811,9 @@ msgstr "" "1-64 lettere minuscole o numeri, senza spazi o simboli di punteggiatura" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Nome" @@ -3741,8 +3853,9 @@ msgid "Bio" msgstr "Biografia" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4462,7 +4575,8 @@ msgstr "Organizzazione" msgid "Description" msgstr "Descrizione" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Statistiche" @@ -4480,6 +4594,11 @@ msgstr "Azioni applicazione" msgid "Reset key & secret" msgstr "Reimposta chiave e segreto" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Elimina" + #: actions/showapplication.php:261 msgid "Application info" msgstr "Informazioni applicazione" @@ -4571,77 +4690,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Questo è un modo per condividere ciò che ti piace." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "Gruppo %s" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "Gruppi di %1$s, pagina %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Profilo del gruppo" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Nota" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "Alias" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Azioni dei gruppi" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Feed dei messaggi per il gruppo %s (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Feed dei messaggi per il gruppo %s (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Feed dei messaggi per il gruppo %s (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "FOAF per il gruppo %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Membri" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(nessuno)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Tutti i membri" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Creato" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Membri" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4657,7 +4805,10 @@ msgstr "" "stesso](%%%%action.register%%%%) per far parte di questo gruppo e di molti " "altri! ([Maggiori informazioni](%%%%doc.help%%%%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4669,24 +4820,31 @@ msgstr "" "(http://it.wikipedia.org/wiki/Microblogging) basato sul software libero " "[StatusNet](http://status.net/)." -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Amministratori" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "Nessun messaggio." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "Solo mittente e destinatario possono leggere questo messaggio." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Messaggio a %1$s su %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Messaggio da %1$s su %2$s" @@ -5131,12 +5289,14 @@ msgstr "Gli snapshot verranno inviati a questo URL" msgid "Save snapshot settings" msgstr "Salva impostazioni snapshot" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "Non hai una abbonamento a quel profilo." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "Impossibile salvare l'abbonamento." @@ -5952,12 +6112,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Benvenuti su %1$s, @%2$s!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "Nessun utente singolo definito per la modalità single-user." #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -7132,7 +7292,8 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "Feed" @@ -7292,39 +7453,57 @@ msgstr "Questa pagina non è disponibile in un tipo di supporto che tu accetti" msgid "Unsupported image file format." msgstr "Formato file immagine non supportato." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "Quel file è troppo grande. La dimensione massima è %s." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Caricamento parziale." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Errore di sistema nel caricare il file." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "Non è un'immagine o il file è danneggiato." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Perso il nostro file." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Tipo di file sconosciuto" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "MB" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "MB" +msgstr[1] "MB" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "kB" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "kB" +msgstr[1] "kB" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" #: lib/jabber.php:387 #, php-format @@ -8225,6 +8404,13 @@ msgstr "Errore nell'aprire il file del tema." msgid "Top posters" msgstr "Chi scrive più messaggi" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Sblocca" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "Unsandbox" @@ -8404,3 +8590,9 @@ msgstr "Nessun utente specificato: viene usato l'utente di backup." #, php-format msgid "%d entries in backup." msgstr "%d voci nel backup." + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "La descrizione è troppo lunga (max %d caratteri)." + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "Troppi alias! Massimo %d." diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 37b1dea63c..e6b3fb238b 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:09:15+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:30+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -119,6 +119,7 @@ msgstr "そのようなタグはありません。" #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -131,7 +132,7 @@ msgstr "そのようなタグはありません。" #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -310,11 +311,12 @@ msgstr "ユーザを更新できませんでした。" #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -329,7 +331,7 @@ msgstr "プロフィールを保存できませんでした。" #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -504,9 +506,11 @@ msgstr "ソースユーザーを決定できません。" msgid "Could not find target user." msgstr "ターゲットユーザーを見つけられません。" +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" @@ -514,35 +518,43 @@ msgstr "" "できません。" #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "そのニックネームは既に使用されています。他のものを試してみて下さい。" #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "有効なニックネームではありません。" #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "ホームページのURLが不適切です。" #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -551,19 +563,22 @@ msgstr "フルネームが長すぎます。(255字まで)" #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." msgstr[0] "記述が長すぎます。(最長%d字)" #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -571,7 +586,12 @@ msgstr "場所が長すぎます。(255字まで)" #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, fuzzy, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -586,15 +606,19 @@ msgstr "不正な別名: \"%s\"" #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "別名 \"%s\" は既に使用されています。他のものを試してみて下さい。" #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "別名はニックネームと同じではいけません。" @@ -701,18 +725,18 @@ msgid "Request token already authorized." msgstr "認証されていません。" #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -731,12 +755,13 @@ msgid "Database error inserting oauth_token_association." msgstr "OAuth アプリケーションユーザの追加時DBエラー。" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -785,6 +810,7 @@ msgstr "アカウント" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1035,105 +1061,139 @@ msgstr "API メソッドが工事中です。" msgid "User not found." msgstr "API メソッドが見つかりません。" +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "そのような添付はありません。" -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "ニックネームがありません。" -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "サイズがありません。" -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "不正なサイズ。" +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "アバター" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "自分のアバターをアップロードできます。最大サイズは%sです。" -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "合っているプロフィールのないユーザ" -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "アバター設定" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "オリジナル" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "プレビュー" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "削除" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "アップロード" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "切り取り" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 #, fuzzy msgid "No file uploaded." msgstr "プロファイル記述がありません。" -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "あなたのアバターとなるイメージを正方形で指定" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "ファイルデータを紛失しました。" -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "アバターが更新されました。" -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "アバターの更新に失敗しました。" -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "アバターが削除されました。" -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "そのユーザはすでにブロック済みです。" -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "ユーザをブロック" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 #, fuzzy msgid "" "Are you sure you want to block this user? Afterwards, they will be " @@ -1150,7 +1210,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1159,7 +1219,7 @@ msgstr "ノート" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "このユーザをアンブロックする" @@ -1169,7 +1229,7 @@ msgstr "このユーザをアンブロックする" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 #, fuzzy @@ -1179,90 +1239,111 @@ msgstr "Yes" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "このユーザをブロックする" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "ブロック情報の保存に失敗しました。" +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "そのようなグループはありません。" -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "%s ブロックされたプロファイル" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s ブロックされたプロファイル、ページ %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "このグループへの参加をブロックされたユーザのリスト。" -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "グループからのアンブロックユーザ" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "アンブロック" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "このユーザをアンブロックする" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "%s 上のグループ" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "確認コードがありません。" +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "確認コードが見つかりません。" -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "その確認コードはあなたのものではありません!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "不明なアドレスタイプ %s" -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "そのアドレスは既に承認されています。" +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1270,7 +1351,7 @@ msgstr "そのアドレスは既に承認されています。" #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1278,27 +1359,32 @@ msgstr "そのアドレスは既に承認されています。" msgid "Couldn't update user." msgstr "ユーザを更新できません" -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." msgstr "メール承認を削除できません" -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "アドレスの確認" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "アドレス \"%s\" はあなたのアカウントとして承認されています。" -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "会話" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "つぶやき" @@ -1410,11 +1496,13 @@ msgstr "このつぶやきを削除できません。" msgid "Delete this group" msgstr "このユーザを削除" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1719,49 +1807,49 @@ msgstr "コールバックURLが不正です。" msgid "Could not update application." msgstr "アプリケーションを更新できません。" -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "%s グループを編集" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "グループを作るにはログインしていなければなりません。" -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "グループを編集するには管理者である必要があります。" -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "このフォームを使ってグループを編集します。" -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "記述が長すぎます。(最長%d字)" - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "別名が多すぎます! 最大 %d。" - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "不正な別名: \"%s\"" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "グループを更新できません。" +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "別名を作成できません。" -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "オプションが保存されました。" @@ -1960,6 +2048,12 @@ msgstr "承認待ちのものはありません。" msgid "That is the wrong email address." msgstr "その IM アドレスは不正です。" +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "メール承認を削除できません" + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2145,19 +2239,23 @@ msgstr "あなたはこのサイトのサンドボックスユーザができま msgid "User already has this role." msgstr "ユーザは既に黙っています。" +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "プロファイル記述がありません。" -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "そのIDのプロファイルがありません。" -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "グループ記述がありません。" @@ -2243,6 +2341,14 @@ msgstr "" "あなたのグループ用にロゴイメージをアップロードできます。最大ファイルサイズは " "%s。" +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "アップロード" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "切り取り" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "ロゴとなるイメージの正方形を選択。" @@ -2385,15 +2491,18 @@ msgstr "" "なぜ[アカウント登録](%%action.register%%) や [グループ作成](%%action.newgroup" "%%) しないのか!" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "管理者だけがグループメンバーをアンブロックできます。" -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "ユーザはグループからブロックされていません。" -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "ブロックの削除エラー" @@ -2983,10 +3092,12 @@ msgstr "組織が長すぎます。(最大255字)" msgid "Could not create application." msgstr "アプリケーションを作成できません。" +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "新しいグループ" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "このフォームを使って新しいグループを作成します。" @@ -3692,8 +3803,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64文字の、小文字アルファベットか数字で、スペースや句読点は除く" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "フルネーム" @@ -3732,8 +3844,9 @@ msgid "Bio" msgstr "自己紹介" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4451,7 +4564,8 @@ msgstr "組織" msgid "Description" msgstr "概要" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "統計データ" @@ -4469,6 +4583,11 @@ msgstr "アプリケーションアクション" msgid "Reset key & secret" msgstr "key と secret のリセット" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "削除" + #: actions/showapplication.php:261 msgid "Application info" msgstr "アプリケーション情報" @@ -4562,77 +4681,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "これは、あなたが好きなことを共有する方法です。" -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "%s グループ" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "%1$s グループ、ページ %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "グループプロファイル" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "ノート" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "別名" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "グループアクション" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s グループのつぶやきフィード (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s グループのつぶやきフィード (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "%s グループのつぶやきフィード (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "%s グループの FOAF" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "メンバー" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(なし)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "全てのメンバー" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "作成日" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "メンバー" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4647,7 +4795,10 @@ msgstr "" "する短いメッセージを共有します。[今すぐ参加](%%%%action.register%%%%) してこ" "のグループの一員になりましょう! ([もっと読む](%%%%doc.help%%%%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4660,24 +4811,31 @@ msgstr "" "wikipedia.org/wiki/Micro-blogging) サービス。メンバーは彼らの暮らしと興味に関" "する短いメッセージを共有します。" -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "管理者" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "そのようなメッセージはありません。" -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "送信者と受取人だけがこのメッセージを読めます。" -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "%2$s 上の %1$s へのメッセージ" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "%2$s 上の %1$s からのメッセージ" @@ -5136,12 +5294,14 @@ msgstr "このURLにスナップショットを送るでしょう" msgid "Save snapshot settings" msgstr "サイト設定の保存" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "あなたはそのプロファイルにフォローされていません。" +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "フォローを保存できません。" @@ -5947,12 +6107,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "ようこそ %1$s、@%2$s!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "single-user モードのためのシングルユーザが定義されていません。" #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -7097,7 +7257,8 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -7255,39 +7416,54 @@ msgstr "このページはあなたが承認したメディアタイプでは利 msgid "Unsupported image file format." msgstr "サポート外の画像形式です。" -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "ファイルが大きすぎます。最大ファイルサイズは %s 。" -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "不完全なアップロード。" #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "ファイルのアップロードでシステムエラー" -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "画像ではないかファイルが破損しています。" -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "ファイルを紛失。" -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "不明なファイルタイプ" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "MB" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "MB" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "kB" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "kB" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" #: lib/jabber.php:387 #, php-format @@ -8159,6 +8335,13 @@ msgstr "ブロックの削除エラー" msgid "Top posters" msgstr "上位投稿者" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "アンブロック" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "アンサンドボックス" @@ -8338,3 +8521,9 @@ msgstr "ユーザIDの記述がありません。" #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "記述が長すぎます。(最長%d字)" + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "別名が多すぎます! 最大 %d。" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index 2d6b45a194..5035cb8ba2 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:09:17+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:31+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ka\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -115,6 +115,7 @@ msgstr "ასეთი გვერდი არ არსებობს." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -127,7 +128,7 @@ msgstr "ასეთი გვერდი არ არსებობს." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -305,11 +306,12 @@ msgstr "მომხმარებლის განახლება ვე #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -324,7 +326,7 @@ msgstr "პროფილის შენახვა ვერ მოხერ #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -496,43 +498,53 @@ msgstr "ავტორი მომხმარებლის განსა msgid "Could not find target user." msgstr "სასურველი მომხმარებელი ვერ მოიძებნა." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "მეტსახელში დასაშვებია მხოლოდ პატარა ასოები და ციფრები." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "მეტსახელი უკვე გამოყენებულია. სცადე სხვა." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "მეტსახელი არასწორია." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "სასტარტო გვერდი არასწორი URL-ია." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -541,19 +553,22 @@ msgstr "სრული სახელი ძალიან გრძელი #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." msgstr[0] "აღწერა ძალიან გრძელია (არაუმეტეს %d სიმბოლო)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -561,7 +576,12 @@ msgstr "ადგილმდებარეობა ძალიან გრ #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -576,15 +596,19 @@ msgstr "" #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "" #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "" @@ -689,18 +713,18 @@ msgid "Request token already authorized." msgstr "თქვენ არ ხართ ავტორიზირებული." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -719,12 +743,13 @@ msgid "Database error inserting oauth_token_association." msgstr "ბაზამ დაუშვა შეცდომა OAuth აპლიკაციის მომხმარებლის ჩასმისას." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -773,6 +798,7 @@ msgstr "ანგარიში" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1022,105 +1048,139 @@ msgstr "API მეთოდი დამუშავების პროცე msgid "User not found." msgstr "API მეთოდი ვერ მოიძებნა." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "ასეთი მიმაგრებული დოკუმენტი ვერ მოიძებნა." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "მეტსახელი უცნობია." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "ზომა უცნობია." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "ზომა არასწორია." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "ავატარი" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" "თქვენ შეგიძლიათ ატვირთოთ პერსონალური ავატარი. ფაილის დასაშვები ზომაა %s." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "მომხმარებელი შესაბამისი პროფილის გარეშე." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "ავატარის პარამეტრები." -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "ორიგინალი" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "წინასწარი გადახედვა" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "წაშლა" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "ატვირთვა" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "მოჭრა" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "არცერთი ფაილი არ ატვირთულა" -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "აირჩიეთ სურათის კვადრატული მონაკვეთი თქვენი ავატარისთვის" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "" -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "ავატარი განახლდა." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "ავატარის განახლება ვერ მოხერხდა." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "ავატარი წაიშალა." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "თქვენ უკვე დაბლოკეთ ეს მომხმარებელი." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "მომხმარებლის დაბლოკვა" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1133,7 +1193,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1142,7 +1202,7 @@ msgstr "არა" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "არ დაბლოკო ეს მომხმარებელი" @@ -1152,7 +1212,7 @@ msgstr "არ დაბლოკო ეს მომხმარებელი #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1161,90 +1221,111 @@ msgstr "დიახ" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "დაბლოკე ეს მომხმარებელი" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "დაბლოკვის შესახებ ინფორმაციის შენახვა ვერ მოხერხდა." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "ასეთი ჯგუფი ვერ მოიძებნა." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "%s დაბლოკილი პროფილი" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s დაბლოკილი პროფილი, გვერდი %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "ამ ჯგუფში გაწევრიანებისგან დაბლოკილ მომხმარებელთა სია." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "მომხმარებლის ბლოკირების მოხსნა ჯგუფიდან" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "ბლოკირების მოხსნა" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "მომხმარებლის ბლოკირების მოხსნა" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "დაუპოსტე %s-ს" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "დასადასტურებელი კოდი არ არის." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "დასადასტურებელი კოდი ვერ მოიძებნა." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "ეს დასადასტურებელი კოდი თქვენთვის არ არის!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "მისამართის ამოუცნობი ტიპი %s." -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "ეს მისამართი უკვე დადასტურებულია." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1252,7 +1333,7 @@ msgstr "ეს მისამართი უკვე დადასტურ #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1260,27 +1341,32 @@ msgstr "ეს მისამართი უკვე დადასტურ msgid "Couldn't update user." msgstr "მომხმარებლის განახლება ვერ მოხერხდა." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." -msgstr "ელ. ფოსტის დადასტურების წაშლა ვერ მოხერხდა." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." +msgstr "IM დასტურის წაშლა ვერ მოხერხდა." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "მისამართის დასტური" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "მისამართი \"%s\" დადასტურდა თქვენი ანგარიშისთვის." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "საუბარი" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "შეტყობინებები" @@ -1390,11 +1476,13 @@ msgstr "არ წაშალო ეს შეტყობინება" msgid "Delete this group" msgstr "ამ მომხმარებლის წაშლა" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1697,49 +1785,49 @@ msgstr "" msgid "Could not update application." msgstr "აპლიკაციის განახლება ვერ მოხერხდა." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "%s ჯგუფის რედაქტირება" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "გჯუფის შესაქმნელად საჭიროა ავტორიზაცია." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "ჯგუფის რედაქტირებისათვის საჭიროა ადმინის უფლებები." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "ჯგუფის რედაქტირებისათვის გამოიყენეთ ეს ფორმა." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "აღწერა ძალიან გრძელია (არაუმეტეს %d სიმბოლო)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "ჯგუფის განახლება ვერ მოხერხდა." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "" -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "პარამეტრები შენახულია." @@ -1933,6 +2021,12 @@ msgstr "გასაუქმებელიარაფერია. არ ა msgid "That is the wrong email address." msgstr "ეს არასწორი ელ. ფოსტის მისამართია." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "ელ. ფოსტის დადასტურების წაშლა ვერ მოხერხდა." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2112,19 +2206,23 @@ msgstr "თქვენ არ შეგიძლიათ როლების msgid "User already has this role." msgstr "მომხმარებელს უკვე აქვს ეს როლი." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "პროფილი მითითებული არ არის." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "ასეთი ID-ს მქონე პროფილი ვერ მოიძებნა." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "ჯგუფი მითითებული არ არის." @@ -2210,6 +2308,14 @@ msgid "" msgstr "" "თქვენ შეგიძლიათ ატვირთოთ ლოგოს თქვენი ჯგუფისათვის. ფაილის დასაშვები ზომაა %s." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "ატვირთვა" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "მოჭრა" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "აირჩიეთ სურათის კვადრატული მონაკვეთი ლოგოსათვის." @@ -2353,15 +2459,18 @@ msgstr "" "[დაარეგისტრირეთ ანგარიში](%%action.register%%) და [შექმენით ჯგუფი](%%action." "newgroup%%) თვითონ!" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "მხოლოდ ადმინს შეუძლია ჯგუფის წევრისთვის ბლოკის მოხსნა." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "მომხმარებელი არ არის დაბლოკილი ჯგუფიდან." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "შეცდომა ბლოკის მოხსნისას." @@ -2950,10 +3059,12 @@ msgstr "ორგანიზაცია ძალიან გრძელი msgid "Could not create application." msgstr "აპლიკაციის შექმნა ვერ მოხერხდა." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "ახალი ჯგუფი" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "ახალი ჯგუფის შესაქმნელად გამოიყენეთ ეს ფორმა." @@ -3650,8 +3761,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1–64 პატარა ასოები ან ციფრები. პუნქტუაციები ან სივრცეები დაუშვებელია" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "სრული სახელი" @@ -3690,8 +3802,9 @@ msgid "Bio" msgstr "ბიოგრაფია" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4407,7 +4520,8 @@ msgstr "ორგანიზაცია" msgid "Description" msgstr "აღწერა" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "სტატისტიკა" @@ -4425,6 +4539,11 @@ msgstr "აპლიკაციის მოქმედებები" msgid "Reset key & secret" msgstr "გასაღების და საიდუმლოს გადაყენება" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "წაშლა" + #: actions/showapplication.php:261 msgid "Application info" msgstr "ინფო აპლიკაციაზე" @@ -4514,77 +4633,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "" -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "შენიშვნა" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "წევრები" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(არცერთი)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "შექმნილია" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "წევრები" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4594,7 +4742,10 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4603,24 +4754,31 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "" -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "" -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "" @@ -5053,12 +5211,14 @@ msgstr "მდგომარეობა გაიგზავნება ა msgid "Save snapshot settings" msgstr "დაიმახსოვრე მდგომარეობის პარამეტრები" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "თქვენ არ გაქვთ გამოწერილი ამ პროფილის განახლებები." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "გამოწერის დამახსოვრება ვერ მოხერხდა." @@ -5876,12 +6036,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "გამარჯობა @%2$s, კეთილი იყოს თქვენი მობრძანება %1$s-ზე!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "ერთი მომხმარებელი არ განსაზღვრულა ერთარედთი-მომხმარებლის რეჟიმისთვის." #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -7009,7 +7169,8 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -7171,39 +7332,54 @@ msgstr "ეს გვერდი მიუწვდომელია იმ msgid "Unsupported image file format." msgstr "სურათის ფორმატი მხარდაჭერილი არ არის." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "ეს ფაილი ძალიან დიდია. ფაილის მაქს. ზომაა %s." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "ნაწილობრივი ატვირთვა." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "სისტემური შეცდომა ფაილის ატვირთვისას." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "სურათი არ არის, ან ფაილი დაზიანებულია." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "ფაილი დაიკარგა." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "ფაილის ტიპი უცნობია" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "მბ" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "მბ" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "კბ" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "კბ" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" #: lib/jabber.php:387 #, php-format @@ -8079,6 +8255,13 @@ msgstr "თემის არქივის გახსნისას მო msgid "Top posters" msgstr "საუკეთესო მპოსტავები" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "ბლოკირების მოხსნა" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "იზოლირების მოხსნა" @@ -8257,3 +8440,6 @@ msgstr "მომხმარებლის ID მითითებული #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "აღწერა ძალიან გრძელია (არაუმეტეს %d სიმბოლო)." diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 1c1b1a444e..10af95aaf1 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:09:19+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:32+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -117,6 +117,7 @@ msgstr "해당하는 페이지 없음" #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -129,7 +130,7 @@ msgstr "해당하는 페이지 없음" #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -301,11 +302,12 @@ msgstr "이용자를 업데이트 할 수 없습니다." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -320,7 +322,7 @@ msgstr "프로필을 저장 할 수 없습니다." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -494,9 +496,11 @@ msgstr "소스 이용자를 확인할 수 없습니다." msgid "Could not find target user." msgstr "타겟 이용자를 찾을 수 없습니다." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" @@ -504,35 +508,43 @@ msgstr "" "다." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "유효한 별명이 아닙니다" #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "홈페이지 주소형식이 올바르지 않습니다." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -541,19 +553,22 @@ msgstr "실명이 너무 깁니다. (최대 255글자)" #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." msgstr[0] "설명이 너무 깁니다. (최대 %d 글자)" #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -561,7 +576,12 @@ msgstr "위치가 너무 깁니다. (최대 255글자)" #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, fuzzy, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -576,15 +596,19 @@ msgstr "사용할 수 없는 별명 : \"%s\"" #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "별명 \"%s\" 이 이미 사용중 입니다. 다른 별명을 시도해 보십시오." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "" @@ -690,18 +714,18 @@ msgid "Request token already authorized." msgstr "당신은 이 프로필에 구독되지 않고있습니다." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -720,12 +744,13 @@ msgid "Database error inserting oauth_token_association." msgstr "OAuth 응용 프로그램 사용자 추가 중 데이터베이스 오류" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -780,6 +805,7 @@ msgstr "계정" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1028,104 +1054,138 @@ msgstr "API 메서드를 구성중 입니다." msgid "User not found." msgstr "API 메서드 발견 안 됨." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "해당하는 첨부파일이 없습니다." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "별명이 없습니다." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "사이즈가 없습니다." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "옳지 않은 크기" +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "아바타" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "당신의 개인 아바타를 업로드할 수 있습니다. 최대 파일 크기는 %s 입니다." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "이용자가 프로필을 가지고 있지 않습니다." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "아바타 설정" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "원래 설정" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "미리보기" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "삭제" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "올리기" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "자르기" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "파일을 업로드하지 않았습니다." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "그림에서 당신의 아바타로 사용할 영역을 지정하십시오." -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "파일 데이터를 잃어버렸습니다." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "아바타가 업데이트 되었습니다." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "아바타 업데이트 실패" -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "아바타가 삭제되었습니다." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "이미 차단된 이용자입니다." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "사용자를 차단합니다." -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1140,7 +1200,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1149,7 +1209,7 @@ msgstr "아니오" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "이용자를 차단하지 않는다." @@ -1159,7 +1219,7 @@ msgstr "이용자를 차단하지 않는다." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1168,91 +1228,112 @@ msgstr "예" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "이 사용자 차단하기" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "정보차단을 저장하는데 실패했습니다." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "그러한 그룹이 없습니다." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "%s 및 친구들, %d 페이지" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s 및 친구들, %2$d 페이지" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 #, fuzzy msgid "A list of the users blocked from joining this group." msgstr "이 그룹의 회원리스트" -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "그룹 이용자는 차단해제" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "차단해제" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "이 사용자를 차단해제합니다." #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "%s 사이트의 그룹" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "확인 코드가 없습니다." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "인증 코드가 없습니다." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "그 인증 코드는 귀하의 것이 아닙니다!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "인식되지않은 주소유형 %s" -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "그 주소는 이미 승인되었습니다." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1260,7 +1341,7 @@ msgstr "그 주소는 이미 승인되었습니다." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1268,27 +1349,32 @@ msgstr "그 주소는 이미 승인되었습니다." msgid "Couldn't update user." msgstr "사용자를 업데이트 할 수 없습니다." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." -msgstr "메일 승인을 삭제 할 수 없습니다." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." +msgstr "메신저 승인을 삭제 할 수 없습니다." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "주소 확인" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "\"%s\" 는 귀하의 계정으로 승인되었습니다." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "대화" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "통지" @@ -1394,11 +1480,13 @@ msgstr "이 통지를 지울 수 없습니다." msgid "Delete this group" msgstr "이 사용자 삭제" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1702,49 +1790,49 @@ msgstr "" msgid "Could not update application." msgstr "관심소식을 생성할 수 없습니다." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "%s 그룹 편집" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "그룹을 만들기 위해서는 로그인해야 합니다." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "관리자만 그룹을 편집할 수 있습니다." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "다음 양식을 이용해 그룹을 편집하십시오." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "설명이 너무 깁니다. (최대 %d 글자)" - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "별명이 너무 많습니다! 최대 %d개." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "사용할 수 없는 별명 : \"%s\"" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "그룹을 업데이트 할 수 없습니다." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "관심소식을 생성할 수 없습니다." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "옵션을 저장했습니다." @@ -1936,6 +2024,12 @@ msgstr "취소 할 대기중인 인증이 없습니다." msgid "That is the wrong email address." msgstr "옳지 않은 메신저 계정 입니다." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "메일 승인을 삭제 할 수 없습니다." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2115,19 +2209,23 @@ msgstr "이 사이트의 이용자에 대해 권한정지 할 수 없습니다." msgid "User already has this role." msgstr "이용자가 프로필을 가지고 있지 않습니다." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "프로필을 지정하지 않았습니다." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "해당 ID의 프로필이 없습니다." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 #, fuzzy msgid "No group specified." @@ -2213,6 +2311,14 @@ msgid "" msgstr "" "사이트의 배경 이미지를 업로드할 수 있습니다. 최대 파일 크기는 %1$s 입니다." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "올리기" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "자르기" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "이미지에서 로고로 사용할 사각 영역을 지정하세요." @@ -2346,15 +2452,18 @@ msgid "" "action.newgroup%%) yourself!" msgstr "" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "" -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "그룹 이용자는 차단해제" -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "차단 제거 에러!" @@ -2935,10 +3044,12 @@ msgstr "기관 이름이 너무 깁니다. (최대 255글자)" msgid "Could not create application." msgstr "관심소식을 생성할 수 없습니다." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "새로운 그룹" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "새 그룹을 만들기 위해 이 양식을 사용하세요." @@ -3632,8 +3743,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백을 쓰면 안 됩니다." #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "실명" @@ -3672,8 +3784,9 @@ msgid "Bio" msgstr "자기소개" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4375,7 +4488,8 @@ msgstr "기관 이름이 필요합니다." msgid "Description" msgstr "설명" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "통계" @@ -4393,6 +4507,11 @@ msgstr "인증 코드가 없습니다." msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "삭제" + #: actions/showapplication.php:261 msgid "Application info" msgstr "인증 코드가 없습니다." @@ -4478,77 +4597,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "좋아하는 글을 지정하면 자기가 무엇을 좋아하는지 알릴 수 있습니다." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "%s 그룹" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "그룹, %d페이지" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "그룹 프로필" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "설명" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "그룹 행동" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s 그룹을 위한 공지피드 (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s 그룹을 위한 공지피드 (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "%s 그룹을 위한 공지피드 (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "%s의 보낸쪽지함" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "회원" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(없음)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "모든 회원" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "생성됨" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "회원" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4558,7 +4706,10 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4569,25 +4720,32 @@ msgstr "" "**%s** 는 %%%%site.name%%%% [마이크로블로깅)(http://en.wikipedia.org/wiki/" "Micro-blogging)의 사용자 그룹입니다. " -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 #, fuzzy msgid "Admins" msgstr "관리자" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "그러한 메시지가 없습니다." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "오직 발송자가 수신자가 이 메시지를 읽는것이 좋습니다." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "%2$s에서 %1$s까지 메시지" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "%1$s에서 %2$s까지 메시지" @@ -5029,12 +5187,14 @@ msgstr "" msgid "Save snapshot settings" msgstr "접근 설정을 저장" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "당신은 이 프로필에 구독되지 않고있습니다." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "구독을 저장할 수 없습니다." @@ -5840,12 +6000,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "%s에 답신" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "" #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -6976,7 +7136,8 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -7135,39 +7296,54 @@ msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 msgid "Unsupported image file format." msgstr "지원하지 않는 그림 파일 형식입니다." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, fuzzy, php-format msgid "That file is too big. The maximum file size is %s." msgstr "당신그룹의 로고 이미지를 업로드할 수 있습니다." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "불완전한 업로드." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "파일을 올리는데 시스템 오류 발생" -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "그림 파일이 아니거나 손상된 파일 입니다." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "파일을 잃어버렸습니다." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "알 수 없는 종류의 파일입니다" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "MB" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "MB" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "kB" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "kB" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" #: lib/jabber.php:387 #, php-format @@ -7965,6 +8141,13 @@ msgstr "차단 제거 에러!" msgid "Top posters" msgstr "상위 게시글 등록자" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "차단해제" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "" @@ -8142,3 +8325,9 @@ msgstr "프로필을 지정하지 않았습니다." #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "설명이 너무 깁니다. (최대 %d 글자)" + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "별명이 너무 많습니다! 최대 %d개." diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index fde84118d4..dc06bfc241 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:09:21+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -118,6 +118,7 @@ msgstr "Нема таква страница." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -130,7 +131,7 @@ msgstr "Нема таква страница." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -309,11 +310,12 @@ msgstr "Не можев да го подновам корисникот." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -328,7 +330,7 @@ msgstr "Не може да се зачува профил." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -509,43 +511,53 @@ msgstr "Не можев да го утврдам целниот корисник msgid "Could not find target user." msgstr "Не можев да го пронајдам целниот корисник." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Прекарот мора да има само мали букви и бројки и да нема празни места." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Тој прекар е во употреба. Одберете друг." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Неправилен прекар." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Главната страница не е важечка URL-адреса." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 msgid "Full name is too long (maximum 255 characters)." msgstr "Полното име е предолго (највеќе 255 знаци)." @@ -553,10 +565,11 @@ msgstr "Полното име е предолго (највеќе 255 знаци #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -564,16 +577,23 @@ msgstr[0] "Описот е предолг (дозволено е највеќе msgstr[1] "Описот е предолг (дозволено е највеќе %d знаци)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 msgid "Location is too long (maximum 255 characters)." msgstr "Местоположбата е предолга (највеќе 255 знаци)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -589,15 +609,19 @@ msgstr "Неважечки алијас: „%s“." #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Алијасот „%s“ е зафатен. Одберете друг." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "Алијасот не може да биде ист како прекарот." @@ -700,18 +724,18 @@ msgid "Request token already authorized." msgstr "Жетонот за барање е веќе овластен." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -729,12 +753,13 @@ msgid "Database error inserting oauth_token_association." msgstr "Грешка во базата при вметнувањето на auth_token_association." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -788,6 +813,7 @@ msgstr "Сметка" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1040,31 +1066,42 @@ msgstr "API-методот е во изработка." msgid "User not found." msgstr "Корисникот не е пронајден." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "Нема таков прилог." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Нема прекар." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Нема големина." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Погрешна големина." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Аватар" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." @@ -1072,74 +1109,97 @@ msgstr "" "Можете да подигнете свој личен аватар. Максималната дозволена големина на " "податотеката изнесува %s." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Корисник без соодветен профил." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Нагодувања на аватарот" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Оригинал" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Преглед" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Бриши" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Подигни" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Отсечи" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "Нема подигнато податотека." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "Одберете квадратна површина од сликата за аватар" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Податоците за податотеката се изгубени." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Аватарот е подновен." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Подновата на аватарот не успеа." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "Аватарот е избришан." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "Веќе го имате блокирано тој корисник." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Блокирај корисник" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1156,7 +1216,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1165,7 +1225,7 @@ msgstr "Не" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Не го блокирај корисников" @@ -1175,7 +1235,7 @@ msgstr "Не го блокирај корисников" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1184,90 +1244,111 @@ msgstr "Да" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Блокирај го корисников" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "Не можев да ги снимам инофрмациите за блокот." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "Нема таква група." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "%s блокирани профили" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s блокирани профили, стр. %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "Листана корисниците блокирани од придружување во оваа група." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Одблокирај корисник од група" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Одблокирај" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Одблокирај го овој корсник" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Објави во %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Нема потврден код." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Потврдниот код не е пронајден." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "Овој потврден код не е за Вас!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "Непознат тип на адреса %s." -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "Оваа адреса веќе е потврдена." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1275,7 +1356,7 @@ msgstr "Оваа адреса веќе е потврдена." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1283,27 +1364,32 @@ msgstr "Оваа адреса веќе е потврдена." msgid "Couldn't update user." msgstr "Не можев да го подновам корисникот." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." -msgstr "Не можев да ја избришам потврдата по е-пошта." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." +msgstr "Не можев да ја избришам потврдата на IM." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Потврди адреса" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Адресата \"%s\" е потврдена за Вашата сметка." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Разговор" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Забелешки" @@ -1409,11 +1495,13 @@ msgstr "Не ја бриши групава" msgid "Delete this group" msgstr "Избриши ја групава" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1713,49 +1801,49 @@ msgstr "URL-адресата за повикување е неважечка." msgid "Could not update application." msgstr "Не можев да го подновам програмот." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Уреди ја групата %s" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Мора да сте најавени за да можете да создавате групи." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Мора да сте администратор за да можете да ја уредите групата." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "ОБразецов служи за уредување на групата." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Описот е предолг (дозволено е највеќе %d знаци)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Премногу алијаси! Дозволено е највеќе %d." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Неважечки алијас: „%s“" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Не можев да ја подновам групата." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Не можеше да се создадат алијаси." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Нагодувањата се зачувани." @@ -1950,6 +2038,12 @@ msgstr "Нема потврди кои може да се откажат." msgid "That is the wrong email address." msgstr "Ова е погрешна е-поштенска адреса." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Не можев да ја избришам потврдата по е-пошта." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2130,19 +2224,23 @@ msgstr "Не можете да им доделувате улоги на кор msgid "User already has this role." msgstr "Корисникот веќе ја има таа улога." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "Нема назначено профил." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "Нема профил со тоа ID." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "Нема назначено група." @@ -2231,6 +2329,14 @@ msgstr "" "Можете да подигнете слика за логото на Вашата група. Максималната дозволена " "големина на податотеката е %s." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Подигни" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Отсечи" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Одберете квадратен простор на сликата за лого." @@ -2374,15 +2480,18 @@ msgstr "" "А зошто самите не [регистрирате сметка](%%action.register%%) и [создадете " "група](%%action.newgroup%%)!" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "Само администратор може да одблокира членови на група." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "Корисникот не е блокиран од групата." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Грешка при отстранување на блокот." @@ -2974,10 +3083,12 @@ msgstr "Организацијата е предолга (дозволени с msgid "Could not create application." msgstr "Не можеше да се создаде програмот." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Нова група" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Овој образец служи за создавање нова група." @@ -3671,8 +3782,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 мали букви или бројки, без интерпукциски знаци и празни места." #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Цело име" @@ -3712,8 +3824,9 @@ msgid "Bio" msgstr "Биографија" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4440,7 +4553,8 @@ msgstr "Организација" msgid "Description" msgstr "Опис" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Статистики" @@ -4458,6 +4572,11 @@ msgstr "Дејства на програмот" msgid "Reset key & secret" msgstr "Клуч за промена и тајна" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Бриши" + #: actions/showapplication.php:261 msgid "Application info" msgstr "Инфо за програмот" @@ -4552,77 +4671,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Ова е начин да го споделите она што Ви се допаѓа." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "Група %s" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "Група %1$s, стр. %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Профил на група" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Забелешка" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "Алијаси" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Групни дејства" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Канал со забелешки за групата %s (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Канал со забелешки за групата %s (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Канал со забелешки за групата%s (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "FOAF за групата %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Членови" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Нема)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Сите членови" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Создадено" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Членови" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4638,7 +4786,10 @@ msgstr "" "се](%%%%action.register%%%%) за да станете дел од оваа група и многу повеќе! " "([Прочитајте повеќе](%%%%doc.help%%%%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4651,24 +4802,31 @@ msgstr "" "слободната програмска алатка [StatusNet](http://status.net/). Нејзините " "членови си разменуваат кратки пораки за нивниот живот и интереси. " -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Администратори" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "Нема таква порака." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "Само испраќачот и примачот можат да ја читаат оваа порака." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Порака за %1$s на %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Порака од %1$s на %2$s" @@ -5118,12 +5276,14 @@ msgstr "Снимките ќе се испраќаат на оваа URL-адре msgid "Save snapshot settings" msgstr "Зачувај поставки за снимки" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "Не сте претплатени на тој профил." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "Не можев да ја зачувам претплатата." @@ -5938,12 +6098,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Добредојдовте на %1$s, @%2$s!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "Не е зададен корисник за еднокорисничкиот режим." #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "Повикан е еднокориснички режим, но не е овозможен." @@ -7110,7 +7270,8 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "Канали" @@ -7270,39 +7431,57 @@ msgstr "Оваа страница не е достапна во форматот msgid "Unsupported image file format." msgstr "Неподдржан фомрат на слики." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, fuzzy, php-format msgid "That file is too big. The maximum file size is %s." msgstr "Ова е предолго. Максималната должина е 140 знаци." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Делумно подигање." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Системска грешка при подигањето на податотеката." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "Не е слика или податотеката е пореметена." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Податотеката е изгубена." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Непознат тип на податотека" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "МБ" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "МБ" +msgstr[1] "МБ" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "кб" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "кб" +msgstr[1] "кб" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" #: lib/jabber.php:387 #, php-format @@ -8203,6 +8382,13 @@ msgstr "Грешка при отворањето на архивот за мот msgid "Top posters" msgstr "Најактивни објавувачи" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Одблокирај" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "Извади од песочен режим" @@ -8385,3 +8571,9 @@ msgstr "Нема назначено корисник. Ќе го употреба #, php-format msgid "%d entries in backup." msgstr "%d резервни ставки." + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "Описот е предолг (дозволено е највеќе %d знаци)." + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "Премногу алијаси! Дозволено е највеќе %d." diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 267d4bdee0..370ad9cbb1 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:09:25+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:38+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -116,6 +116,7 @@ msgstr "Ingen slik side." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -128,7 +129,7 @@ msgstr "Ingen slik side." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -306,11 +307,12 @@ msgstr "Klarte ikke å oppdatere bruker." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -326,7 +328,7 @@ msgstr "Klarte ikke å lagre profil." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -504,43 +506,53 @@ msgstr "Kunne ikke bestemme kildebruker." msgid "Could not find target user." msgstr "Kunne ikke finne målbruker." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Kallenavn kan kun ha små bokstaver og tall og ingen mellomrom." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Det nicket er allerede i bruk. Prøv et annet." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Ugyldig nick." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Hjemmesiden er ikke en gyldig URL." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -549,10 +561,11 @@ msgstr "Beklager, navnet er for langt (max 250 tegn)." #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -560,9 +573,11 @@ msgstr[0] "Beskrivelsen er for lang (maks %d tegn)." msgstr[1] "Beskrivelsen er for lang (maks %d tegn)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -570,7 +585,12 @@ msgstr "Plassering er for lang (maks 255 tegn)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, fuzzy, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -586,15 +606,19 @@ msgstr "Ugyldig alias: «%s»." #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Aliaset «%s» er allerede i bruk. Prøv et annet." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "Alias kan ikke være det samme som kallenavn." @@ -700,18 +724,18 @@ msgid "Request token already authorized." msgstr "Du er ikke autorisert." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -730,12 +754,13 @@ msgid "Database error inserting oauth_token_association." msgstr "Databasefeil ved innsetting av bruker i programmet OAuth." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -790,6 +815,7 @@ msgstr "Konto" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1041,104 +1067,138 @@ msgstr "API-metode under utvikling." msgid "User not found." msgstr "API-metode ikke funnet!" +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "Ingen slike vedlegg." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Ingen kallenavn." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Ingen størrelse." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Ugyldig størrelse" +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Brukerbilde" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Du kan laste opp en personlig avatar. Maks filstørrelse er %s." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Bruker uten samsvarende profil." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Avatarinnstillinger" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Opprinnelig" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Forhåndsvis" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Slett" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Last opp" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Beskjær" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "Ingen fil lastet opp." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "Velg et kvadratisk utsnitt av bildet som din avatar." -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Mistet våre fildata." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Brukerbildet har blitt oppdatert." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Oppdatering av avatar mislyktes." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "Avatar slettet." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "Du har allerede blokkert den brukeren." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Blokker brukeren" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1154,7 +1214,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1163,7 +1223,7 @@ msgstr "Nei" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Ikke blokker denne brukeren" @@ -1173,7 +1233,7 @@ msgstr "Ikke blokker denne brukeren" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1182,90 +1242,111 @@ msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Blokker denne brukeren" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "Kunne ikke lagre blokkeringsinformasjon." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "Ingen slik gruppe." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "%s blokkerte profiler" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s blokkerte profiler, side %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "En liste over brukere som er blokkert fra å delta i denne gruppen." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Opphev blokkering av bruker fra gruppe" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Opphev blokkering" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Opphev blokkering av denne brukeren" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Post til %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Ingen bekreftelseskode." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Fant ikke bekreftelseskode." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "Den bekreftelseskoden er ikke til deg." -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "Ukjent adressetype %s." -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "Den adressen har allerede blitt bekreftet." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1273,7 +1354,7 @@ msgstr "Den adressen har allerede blitt bekreftet." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1281,27 +1362,32 @@ msgstr "Den adressen har allerede blitt bekreftet." msgid "Couldn't update user." msgstr "Klarte ikke å oppdatere bruker." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." -msgstr "Kunne ikke slette e-postbekreftelse." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." +msgstr "Kunne ikke slette direktemeldingsbekreftelse." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Bekreft adresse" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Adressen «%s» har blitt bekreftet for din konto." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Samtale" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Notiser" @@ -1413,11 +1499,13 @@ msgstr "Ikke slett denne notisen" msgid "Delete this group" msgstr "Slett denne brukeren" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1720,49 +1808,49 @@ msgstr "Anrops-URL er ikke gyldig." msgid "Could not update application." msgstr "Kunne ikke oppdatere programmet." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Rediger %s gruppe" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Du må være innlogget for å opprette en gruppe." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Du må være en administrator for å redigere gruppen." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Bruk dette skjemaet for å redigere gruppen." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Beskrivelsen er for lang (maks %d tegn)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "For mange alias! Maksimum %d." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Ugyldig alias: «%s»" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Kunne ikke oppdatere gruppe." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Kunne ikke opprette alias." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Lagret valg." @@ -1953,6 +2041,12 @@ msgstr "Ingen ventende bekreftelse å avbryte." msgid "That is the wrong email address." msgstr "Dette er feil e-postadresse." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Kunne ikke slette e-postbekreftelse." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2133,19 +2227,23 @@ msgstr "Du kan ikke tildele brukerroller på dette nettstedet." msgid "User already has this role." msgstr "Bruker har allerede denne rollen." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "Ingen profil oppgitt." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "Ingen profil med den ID'en." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "Ingen gruppe oppgitt." @@ -2230,6 +2328,14 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "Du kan laste opp en logo for gruppen din. Maks filstørrelse er %s." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Last opp" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Beskjær" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Velg et kvadratisk område av bildet som skal bli logoen." @@ -2372,15 +2478,18 @@ msgstr "" "Hvorfor ikke [registrere en konto](%%action.register%%) og [opprette gruppen]" "(%%action.newgroup%%) selv!" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "Bare en admin kan oppheve blokkering av gruppemedlemmer." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "Bruker er ikke blokkert fra gruppe." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Feil under oppheving av blokkering." @@ -2965,10 +3074,12 @@ msgstr "Organisasjon er for lang (maks 255 tegn)." msgid "Could not create application." msgstr "Kunne ikke opprette program." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Ny gruppe" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Bruk dette skjemaet for å opprette en ny gruppe." @@ -3672,8 +3783,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 små bokstaver eller tall, ingen punktum eller mellomrom" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Fullt navn" @@ -3713,8 +3825,9 @@ msgid "Bio" msgstr "Om meg" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4432,7 +4545,8 @@ msgstr "Organisasjon" msgid "Description" msgstr "Beskrivelse" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Statistikk" @@ -4450,6 +4564,11 @@ msgstr "Programhandlinger" msgid "Reset key & secret" msgstr "Tilbakestill nøkkel & hemmelighet" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Slett" + #: actions/showapplication.php:261 msgid "Application info" msgstr "Programinformasjon" @@ -4544,77 +4663,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Dette er en måte å dele det du liker." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "%s gruppe" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "%1$s gruppe, side %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Gruppeprofil" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "Nettadresse" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Merk" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "Alias" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Gruppehandlinger" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Notismating for %s gruppe (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Notismating for %s gruppe (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Notismating for %s gruppe (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "FOAF for gruppen %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Medlemmer" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Ingen)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Alle medlemmer" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Opprettet" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Medlemmer" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4630,7 +4778,10 @@ msgstr "" "%%%) for å bli medlem av denne gruppen og mange fler. ([Les mer](%%%%doc.help" "%%%%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4643,24 +4794,31 @@ msgstr "" "programvareverktøyet [StatusNet](http://status.net/). Dets medlemmer deler " "korte meldinger om deres liv og interesser. " -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Administratorer" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "Ingen slik melding." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "Kun senderen og mottakeren kan lese denne meldingen." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Melding til %1$s på %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Melding fra %1$s på %2$s" @@ -5106,13 +5264,15 @@ msgstr "" msgid "Save snapshot settings" msgstr "Lagre nettstedsinnstillinger" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 #, fuzzy msgid "You are not subscribed to that profile." msgstr "Ikke autorisert." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "Kunne ikke lagre merkelapper." @@ -5902,12 +6062,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Velkommen til %1$s, @%2$s." #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "" #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -7050,7 +7210,8 @@ msgstr "Atom" msgid "FOAF" msgstr "Venn av en venn" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -7212,39 +7373,57 @@ msgstr "Denne siden er ikke tilgjengelig i en mediatype du aksepterer" msgid "Unsupported image file format." msgstr "Bildefilformatet støttes ikke." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "Filen er for stor. Maks filstørrelse er %s." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Delvis opplasting." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Systemfeil ved opplasting av fil." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "Ikke et bilde eller en korrupt fil." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Mistet filen vår." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Ukjent filtype" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "MB" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "MB" +msgstr[1] "MB" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "kB" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "kB" +msgstr[1] "kB" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" #: lib/jabber.php:387 #, php-format @@ -8142,6 +8321,13 @@ msgstr "Feil ved oppdatering av fjernprofil." msgid "Top posters" msgstr "" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Opphev blokkering" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "" @@ -8326,3 +8512,9 @@ msgstr "Ingen bruker-ID spesifisert." #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "Beskrivelsen er for lang (maks %d tegn)." + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "For mange alias! Maksimum %d." diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index d15c7f0037..8a0cc0cad9 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:09:22+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:36+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -118,6 +118,7 @@ msgstr "Deze pagina bestaat niet." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -130,7 +131,7 @@ msgstr "Deze pagina bestaat niet." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -311,11 +312,12 @@ msgstr "Het was niet mogelijk de gebruiker bij te werken." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -330,7 +332,7 @@ msgstr "Het was niet mogelijk het profiel op te slaan." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -511,9 +513,11 @@ msgstr "Het was niet mogelijk de brongebruiker te bepalen." msgid "Could not find target user." msgstr "Het was niet mogelijk de doelgebruiker te vinden." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" @@ -521,36 +525,44 @@ msgstr "" "zijn niet toegestaan." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "" "De opgegeven gebruikersnaam is al in gebruik. Kies een andere gebruikersnaam." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Ongeldige gebruikersnaam!" #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "De thuispagina is geen geldige URL." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 msgid "Full name is too long (maximum 255 characters)." msgstr "De volledige naam is te lang (maximaal 255 tekens)." @@ -558,10 +570,11 @@ msgstr "De volledige naam is te lang (maximaal 255 tekens)." #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -569,16 +582,23 @@ msgstr[0] "De beschrijving is te lang (maximaal %d teken)." msgstr[1] "De beschrijving is te lang (maximaal %d tekens)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 msgid "Location is too long (maximum 255 characters)." msgstr "De locatie is te lang (maximaal 255 tekens)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -594,15 +614,19 @@ msgstr "Ongeldige alias: \"%s\"." #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "De alias \"%s\" wordt al gebruikt. Geef een andere alias op." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "Een alias kan niet hetzelfde zijn als de gebruikersnaam." @@ -652,7 +676,7 @@ msgstr "U bent geen lid van deze groep." #: lib/command.php:398 #, php-format 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 groep %2$s te verwijderen." #. TRANS: Used as title in check for group membership. %s is a user name. #: actions/apigrouplist.php:94 @@ -692,7 +716,7 @@ msgstr "Het opgegeven token of controlegetal is ongeldig." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. #: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." -msgstr "Er is geen oauth_token parameter opgegeven." +msgstr "Er is geen parameter oauth_token opgegeven." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. #: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 @@ -705,18 +729,18 @@ msgid "Request token already authorized." msgstr "Het verzoektoken is al geautoriseerd." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -738,12 +762,13 @@ msgstr "" "oauth_token_association." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -797,6 +822,7 @@ msgstr "Gebruikersgegevens" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1050,106 +1076,140 @@ msgstr "De API-functie is in bewerking." msgid "User not found." msgstr "De pagina is niet aangetroffen." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "Deze bijlage bestaat niet." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Geen gebruikersnaam." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Geen afmeting." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Ongeldige afmetingen." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" "U kunt een persoonlijke avatar uploaden. De maximale bestandsgrootte is %s." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Gebruiker zonder bijbehorend profiel." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Avatarinstellingen" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Origineel" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Voorvertoning" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Verwijderen" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Uploaden" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Uitsnijden" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "Er is geen bestand geüpload." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "" "Selecteer een vierkant in de afbeelding om deze als uw avatar in te stellen" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Ons bestand is verloren gegaan." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "De avatar is bijgewerkt." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Het bijwerken van de avatar is mislukt." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "De avatar is verwijderd." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "U hebt deze gebruiker reeds geblokkeerd." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Gebruiker blokkeren" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1165,7 +1225,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1174,7 +1234,7 @@ msgstr "Nee" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Gebruiker niet blokkeren" @@ -1184,7 +1244,7 @@ msgstr "Gebruiker niet blokkeren" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1193,90 +1253,111 @@ msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Deze gebruiker blokkeren" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "Het was niet mogelijk om de blokkadeinformatie op te slaan." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "De opgegeven groep bestaat niet." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" -msgstr "%s geblokkeerde profielen" +msgstr "Geblokkeerde profielen voor %s" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" -msgstr "%1$s geblokkeerde profielen, pagina %2$d" +msgstr "Geblokkeerde profielen voor %1$s, pagina %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "Een lijst met voor deze groep geblokkeerde gebruikers." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Deze gebruiker weer toegang geven tot de groep" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" -msgstr "Deblokkeer" +msgstr "Deblokkeren" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Deblokkeer deze gebruiker." #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Verzenden naar %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Geen bevestigingscode." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "De bevestigingscode niet gevonden." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "Dit is niet uw bevestigingscode!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "Onbekend adrestype %s." -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "Dit adres is al bevestigd." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1284,7 +1365,7 @@ msgstr "Dit adres is al bevestigd." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1292,27 +1373,32 @@ msgstr "Dit adres is al bevestigd." msgid "Couldn't update user." msgstr "De gebruiker kon gebruiker niet bijwerkt worden." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." -msgstr "De e-mailbevestiging kon niet verwijderd worden." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." +msgstr "De IM-bevestiging kon niet verwijderd worden." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Adres bevestigen" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Het adres \"%s\" is voor uw gebruiker bevestigd." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Dialoog" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Mededelingen" @@ -1419,11 +1505,13 @@ msgstr "Verwijder deze groep niet" msgid "Delete this group" msgstr "Groep verwijderen" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1724,49 +1812,49 @@ msgstr "De callback-URL is niet geldig." msgid "Could not update application." msgstr "Het was niet mogelijk de applicatie bij te werken." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Groep %s bewerken" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "U moet aangemeld zijn om een groep aan te kunnen maken." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "U moet beheerder zijn om de groep te kunnen bewerken." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Gebruik dit formulier om de groep te bewerken." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "De beschrijving is te lang (maximaal %d tekens)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Te veel aliassen! Het maximale aantal is %d." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Ongeldige alias: \"%s\"" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Het was niet mogelijk de groep bij te werken." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Het was niet mogelijk de aliassen aan te maken." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "De instellingen zijn opgeslagen." @@ -1960,6 +2048,12 @@ msgstr "Er is geen openstaand bevestigingsverzoek om te annuleren." msgid "That is the wrong email address." msgstr "Dat is het verkeerde e-mailadres." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "De e-mailbevestiging kon niet verwijderd worden." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2145,19 +2239,23 @@ msgstr "Op deze website kunt u geen gebruikersrollen toekennen." msgid "User already has this role." msgstr "Deze gebruiker heeft deze rol al." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "Er is geen profiel opgegeven." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "Er is geen profiel met dat ID." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "Er is geen groep aangegeven." @@ -2246,6 +2344,14 @@ msgstr "" "Hier kunt u een logo voor uw groep uploaden. De maximale bestandsgrootte is %" "s." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Uploaden" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Uitsnijden" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Selecteer een vierkant uit de afbeelding die het logo wordt." @@ -2390,15 +2496,18 @@ msgstr "" "U kunt een [gebruiker registreren](%%action.register%%) en de groep zelf " "[aanmaken](%%action.newgroup%%)!" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "Alleen beheerders kunnen groepsleden deblokkeren." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "De gebruiker is niet de toegang tot de groep ontzegd." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Er is een fout opgetreden bij het verwijderen van de blokkade." @@ -2989,10 +3098,12 @@ msgstr "De organisatienaam is te lang (maximaal 255 tekens)." msgid "Could not create application." msgstr "Het was niet mogelijk de applicatie aan te maken." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Nieuwe groep" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Gebruik dit formulier om een nieuwe groep aan te maken." @@ -3688,8 +3799,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties." #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Volledige naam" @@ -3728,8 +3840,9 @@ msgid "Bio" msgstr "Beschrijving" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4458,7 +4571,8 @@ msgstr "Organisatie" msgid "Description" msgstr "Beschrijving" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Statistieken" @@ -4476,6 +4590,11 @@ msgstr "Applicatiehandelingen" msgid "Reset key & secret" msgstr "Sleutel en wachtwoord op nieuw instellen" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Verwijderen" + #: actions/showapplication.php:261 msgid "Application info" msgstr "Applicatieinformatie" @@ -4571,77 +4690,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Dit is de manier om dat te delen wat u wilt." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "%s groep" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "Groep %1$s, pagina %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Groepsprofiel" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Opmerking" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "Aliassen" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Groepshandelingen" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Mededelingenfeed voor groep %s (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Mededelingenfeed voor groep %s (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Mededelingenfeed voor groep %s (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "Vriend van een vriend voor de groep %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Leden" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(geen)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Alle leden" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Aangemaakt" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Leden" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4657,7 +4805,10 @@ msgstr "" "lid te worden van deze groep en nog veel meer! [Meer lezen...](%%%%doc.help%%" "%%)" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4670,24 +4821,31 @@ msgstr "" "[StatusNet](http://status.net/). De leden wisselen korte mededelingen uit " "over hun ervaringen en interesses. " -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Beheerders" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "Dat bericht bestaat niet." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "Alleen de verzender en de ontvanger kunnen dit bericht lezen." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Bericht aan %1$s op %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Bericht van %1$s op %2$s" @@ -5141,12 +5299,14 @@ msgstr "Snapshots worden naar deze URL verzonden" msgid "Save snapshot settings" msgstr "Snapshotinstellingen opslaan" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "U bent niet geabonneerd op dat profiel." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "Het was niet mogelijk het abonnement op te slaan." @@ -5173,14 +5333,14 @@ msgstr "Geabonneerd" #: actions/subscribers.php:51 #, php-format msgid "%s subscribers" -msgstr "%s abonnees" +msgstr "Abonnees van %s" #. TRANS: Header for list of subscribers for a user (not first page). #. TRANS: %1$s is the user's nickname, $2$d is the page number. #: actions/subscribers.php:55 #, php-format msgid "%1$s subscribers, page %2$d" -msgstr "%1$s abonnees, pagina %2$d" +msgstr "Abonnees van %1$s, pagina %2$d" #. TRANS: Page notice for page with an overview of all subscribers #. TRANS: of the logged in user's own profile. @@ -5230,14 +5390,14 @@ msgstr "" #: actions/subscriptions.php:51 #, php-format msgid "%s subscriptions" -msgstr "%s abonnementen" +msgstr "Abonnementen van %s" #. TRANS: Header for subscriptions overview for a user (not first page). #. TRANS: %1$s is a user nickname, %2$d is the page number. #: actions/subscriptions.php:55 #, php-format msgid "%1$s subscriptions, page %2$d" -msgstr "%1$s abonnementen, pagina %2$d" +msgstr "Abonnementen van %1$s, pagina %2$d" #. TRANS: Page notice for page with an overview of all subscriptions #. TRANS: of the logged in user's own profile. @@ -5974,12 +6134,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Welkom bij %1$s, @%2$s!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "Er is geen gebruiker gedefinieerd voor single-usermodus." #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" "De \"single-user\"-modus is aangeroepen terwijl deze niet is ingeschakeld." @@ -7152,7 +7312,8 @@ msgstr "Atom" msgid "FOAF" msgstr "Vrienden van vrienden (FOAF)" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "Feeds" @@ -7240,7 +7401,7 @@ msgstr "Leden" #, php-format msgctxt "TOOLTIP" msgid "%s group members" -msgstr "Leden van de group %s" +msgstr "Leden van de groep %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:108 @@ -7312,39 +7473,57 @@ msgstr "Deze pagina is niet beschikbaar in een mediatype dat u accepteert" msgid "Unsupported image file format." msgstr "Niet ondersteund beeldbestandsformaat." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "Dat bestand is te groot. De maximale bestandsgrootte is %s." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Gedeeltelijke upload." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Er is een systeemfout opgetreden tijdens het uploaden van het bestand." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "Het bestand is geen afbeelding of het bestand is beschadigd." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Het bestand is zoekgeraakt." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Onbekend bestandstype" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "MB" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "MB" +msgstr[1] "MB" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "kB" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "kB" +msgstr[1] "kB" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" #: lib/jabber.php:387 #, php-format @@ -8251,6 +8430,13 @@ msgstr "" msgid "Top posters" msgstr "Meest actieve gebruikers" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Deblokkeren" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "Uit de zandbak halen" @@ -8435,3 +8621,9 @@ msgstr "Geen gebruiker opgegeven; de back-upgebruiker wordt gebruikt." #, php-format msgid "%d entries in backup." msgstr "%d regels in de back-up." + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "De beschrijving is te lang (maximaal %d tekens)." + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "Te veel aliassen! Het maximale aantal is %d." diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index 450b7d4903..f77a7a17a5 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:09:24+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:37+0000\n" "Language-Team: Norwegian Nynorsk \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nn\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -125,6 +125,7 @@ msgstr "Dette emneord finst ikkje." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -137,7 +138,7 @@ msgstr "Dette emneord finst ikkje." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -310,11 +311,12 @@ msgstr "Kan ikkje oppdatera brukar." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -330,7 +332,7 @@ msgstr "Kan ikkje lagra profil." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -511,43 +513,53 @@ msgstr "Kan ikkje oppdatera brukar." msgid "Could not find target user." msgstr "Kan ikkje oppdatera brukar." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Kallenamn må berre ha små bokstavar og nummer, ingen mellomrom." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Ikkje eit gyldig brukarnamn." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Heimesida er ikkje ei gyldig internettadresse." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -556,10 +568,11 @@ msgstr "Ditt fulle namn er for langt (maksimalt 255 teikn)." #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -567,9 +580,11 @@ msgstr[0] "Plassering er for lang (maksimalt 255 teikn)." msgstr[1] "Plassering er for lang (maksimalt 255 teikn)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -577,7 +592,12 @@ msgstr "Plassering er for lang (maksimalt 255 teikn)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -593,15 +613,19 @@ msgstr "Ugyldig merkelapp: %s" #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "" @@ -710,18 +734,18 @@ msgid "Request token already authorized." msgstr "Du tingar ikkje oppdateringar til den profilen." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -741,12 +765,13 @@ msgid "Database error inserting oauth_token_association." msgstr "databasefeil ved innsetjing av skigardmerkelapp (#merkelapp): %s" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -795,6 +820,7 @@ msgstr "Konto" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1048,106 +1074,140 @@ msgstr "API-metoden er ikkje ferdig enno." msgid "User not found." msgstr "Fann ikkje API-metode." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "Dette emneord finst ikkje." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Ingen kallenamn." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Ingen storleik." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Ugyldig storleik." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Brukarbilete" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Du kan lasta opp ein logo for gruppa." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Brukaren har inga profil." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Avatar-innstillingar" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Original" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Forhandsvis" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Slett" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Last opp" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Skaler" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 #, fuzzy msgid "No file uploaded." msgstr "Ingen vald profil." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "Velg eit utvalg av bildet som vil blir din avatar." -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Fant ikkje igjen fil data." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Lasta opp brukarbilete." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Feil ved oppdatering av brukarbilete." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 #, fuzzy msgid "Avatar deleted." msgstr "Lasta opp brukarbilete." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "Du tingar allereie oppdatering frå desse brukarane:" -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Blokker brukaren" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1160,7 +1220,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1169,7 +1229,7 @@ msgstr "Merknad" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 #, fuzzy msgid "Do not block this user" msgstr "Lås opp brukaren" @@ -1180,7 +1240,7 @@ msgstr "Lås opp brukaren" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 #, fuzzy @@ -1190,92 +1250,113 @@ msgstr "Jau" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Blokkér denne brukaren" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "Lagring av informasjon feila." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "Denne gruppa finst ikkje." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, fuzzy, php-format msgid "%s blocked profiles" msgstr "Brukarprofil" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, fuzzy, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%s med vener, side %d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 #, fuzzy msgid "A list of the users blocked from joining this group." msgstr "Ei liste over brukarane i denne gruppa." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 #, fuzzy msgid "Unblock user from group" msgstr "De-blokkering av brukar feila." -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Lås opp" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Lås opp brukaren" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Svar til %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Ingen stadfestingskode." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Fann ikkje stadfestingskode." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "Den godkjenningskoden er ikkje for deg!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, fuzzy, php-format msgid "Unrecognized address type %s." msgstr "Ukjend adressetype %s" -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "Den addressa har alt blitt bekrefta." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1283,7 +1364,7 @@ msgstr "Den addressa har alt blitt bekrefta." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1291,28 +1372,33 @@ msgstr "Den addressa har alt blitt bekrefta." msgid "Couldn't update user." msgstr "Kan ikkje oppdatera brukar." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." msgstr "Kan ikkje sletta e-postgodkjenning." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Godkjent epostadresse." -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Addressa \"%s\" har blitt bekrefta for din konto." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 #, fuzzy msgid "Conversation" msgstr "Stadfestingskode" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Notisar" @@ -1422,11 +1508,13 @@ msgstr "Kan ikkje sletta notisen." msgid "Delete this group" msgstr "Slett denne notisen" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1748,50 +1836,50 @@ msgstr "" msgid "Could not update application." msgstr "Kann ikkje oppdatera gruppa." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Rediger %s gruppa" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Du må være logga inn for å lage ei gruppe." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Du må være logga inn for å lage ei gruppe." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Bruk dette skjemaet for å redigere gruppa" -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Plassering er for lang (maksimalt 255 teikn)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Ugyldig merkelapp: %s" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Kann ikkje oppdatera gruppa." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 #, fuzzy msgid "Could not create aliases." msgstr "Kunne ikkje lagre favoritt." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Lagra innstillingar." @@ -1988,6 +2076,12 @@ msgstr "Ingen ventande stadfesting å avbryta." msgid "That is the wrong email address." msgstr "Det er feil lynmeldings addresse." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Kan ikkje sletta e-postgodkjenning." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2171,19 +2265,23 @@ msgstr "Du kan ikkje lengre legge inn notisar på denne sida." msgid "User already has this role." msgstr "Brukaren har inga profil." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "Ingen vald profil." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "Fann ingen profil med den IDen." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 #, fuzzy msgid "No group specified." @@ -2272,6 +2370,14 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "Du kan lasta opp ein logo for gruppa." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Last opp" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Skaler" + #: actions/grouplogo.php:365 #, fuzzy msgid "Pick a square area of the image to be the logo." @@ -2407,16 +2513,19 @@ msgid "" "action.newgroup%%) yourself!" msgstr "" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "" -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 #, fuzzy msgid "User is not blocked from group." msgstr "Brukar har blokkert deg." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Feil ved fjerning av blokka." @@ -3011,10 +3120,12 @@ msgstr "Plassering er for lang (maksimalt 255 teikn)." msgid "Could not create application." msgstr "Kunne ikkje lagre favoritt." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Ny gruppe" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Bruk dette skjemaet for å lage ein ny gruppe." @@ -3723,8 +3834,9 @@ msgstr "" "1-64 små bokstavar eller tal, ingen punktum (og liknande) eller mellomrom" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Fullt namn" @@ -3765,8 +3877,9 @@ msgid "Bio" msgstr "Om meg" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4491,7 +4604,8 @@ msgstr "Paginering" msgid "Description" msgstr "Beskriving" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Statistikk" @@ -4509,6 +4623,11 @@ msgstr "" msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Slett" + #: actions/showapplication.php:261 msgid "Application info" msgstr "" @@ -4593,77 +4712,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "" -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "%s gruppe" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "Grupper, side %d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Gruppe profil" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Merknad" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Gruppe handlingar" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Straum for vener av %s" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Straum for vener av %s" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Notisstraum for %s" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "Utboks for %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Medlemmar" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Ingen)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Alle medlemmar" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Framheva" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Medlemmar" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4673,7 +4821,10 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4684,25 +4835,32 @@ msgstr "" "**%s** er ei brukargruppe på %%%%site.name%%%%, ei [mikroblogging](http://en." "wikipedia.org/wiki/Micro-blogging)-teneste" -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 #, fuzzy msgid "Admins" msgstr "Administrator" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "Kan ikkje finne den meldinga." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "Kun sendaren og mottakaren kan lese denne meldinga." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Melding til %1$s på %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Melding fra %1$s på %2$s" @@ -5149,12 +5307,14 @@ msgstr "" msgid "Save snapshot settings" msgstr "Avatar-innstillingar" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "Du tingar ikkje oppdateringar til den profilen." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "Kunne ikkje lagra abonnement." @@ -5964,12 +6124,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Melding til %1$s på %2$s" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "" #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -7126,7 +7286,8 @@ msgstr "" msgid "FOAF" msgstr "" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -7287,39 +7448,57 @@ msgstr "Denne sida er ikkje tilgjengeleg i nokon mediatype du aksepterer." msgid "Unsupported image file format." msgstr "Støttar ikkje bileteformatet." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, fuzzy, php-format msgid "That file is too big. The maximum file size is %s." msgstr "Du kan lasta opp ein logo for gruppa." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Hallvegs opplasta." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Systemfeil ved opplasting av fil." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "Korrupt bilete." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Mista fila vår." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Ukjend fil type" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "" +msgstr[1] "" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" #: lib/jabber.php:387 #, php-format @@ -8136,6 +8315,13 @@ msgstr "Feil ved fjerning av blokka." msgid "Top posters" msgstr "Med flest meldingar" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Lås opp" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "" @@ -8322,3 +8508,6 @@ msgstr "Ingen vald profil." #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "Plassering er for lang (maksimalt 255 teikn)." diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 633fec590d..cfcfb5e54d 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:09:27+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:40+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -20,11 +20,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " "(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-core\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -120,6 +120,7 @@ msgstr "Nie ma takiej strony." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -132,7 +133,7 @@ msgstr "Nie ma takiej strony." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -311,11 +312,12 @@ msgstr "Nie można zaktualizować użytkownika." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -330,7 +332,7 @@ msgstr "Nie można zapisać profilu." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -513,43 +515,53 @@ msgstr "Nie można określić użytkownika źródłowego." msgid "Could not find target user." msgstr "Nie można odnaleźć użytkownika docelowego." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Pseudonim może zawierać tylko małe litery i cyfry, bez spacji." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Pseudonim jest już używany. Spróbuj innego." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "To nie jest prawidłowy pseudonim." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Strona domowa nie jest prawidłowym adresem URL." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 msgid "Full name is too long (maximum 255 characters)." msgstr "Imię i nazwisko jest za długie (maksymalnie 255 znaków)." @@ -557,10 +569,11 @@ msgstr "Imię i nazwisko jest za długie (maksymalnie 255 znaków)." #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -569,22 +582,29 @@ msgstr[1] "Opis jest za długi (maksymalnie %d znaki)." msgstr[2] "Opis jest za długi (maksymalnie %d znaków)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 msgid "Location is too long (maximum 255 characters)." msgstr "Położenie jest za długie (maksymalnie 255 znaków)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 -#, fuzzy, php-format +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 +#, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." -msgstr[0] "Za dużo aliasów. Maksymalnie %d." -msgstr[1] "Za dużo aliasów. Maksymalnie %d." -msgstr[2] "Za dużo aliasów. Maksymalnie %d." +msgstr[0] "Za dużo aliasów. Maksymalnie dozwolony jest %d." +msgstr[1] "Za dużo aliasów. Maksymalnie dozwolone są %d." +msgstr[2] "Za dużo aliasów. Maksymalnie dozwolone jest %d." #. TRANS: Client error shown when providing an invalid alias during group creation. #. TRANS: %s is the invalid alias. @@ -595,15 +615,19 @@ msgstr "Nieprawidłowy alias: \"%s\"." #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias \"%s\" jest już używany. Spróbuj innego." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "Alias nie może być taki sam jak pseudonim." @@ -706,18 +730,18 @@ msgid "Request token already authorized." msgstr "Token żądania został już upoważniony." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -735,12 +759,13 @@ msgid "Database error inserting oauth_token_association." msgstr "Błąd bazy danych podczas wprowadzania oauth_token_association." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -762,15 +787,15 @@ msgstr "Zezwolić czy odmówić dostęp" #. TRANS: User notification of external application requesting account access. #. TRANS: %3$s is the access type requested, %4$s is the StatusNet sitename. #: actions/apioauthauthorize.php:425 -#, fuzzy, php-format +#, php-format msgid "" "An application would like the ability to %3$s your %4$s " "account data. You should only give access to your %4$s account to third " "parties you trust." msgstr "" -"Aplikacja %1$s autorstwa %2$s chciałaby " -"uzyskać możliwość %3$s danych konta %4$s. Dostęp do konta %4" -"$s powinien być udostępniany tylko zaufanym osobom trzecim." +"Aplikacja chciałaby uzyskać możliwość %3$s danych konta %4" +"$s. Dostęp do konta %4$s powinien być udostępniany tylko zaufanym osobom " +"trzecim." #. TRANS: User notification of external application requesting account access. #. TRANS: %1$s is the application name requesting access, %2$s is the organisation behind the application, @@ -794,6 +819,7 @@ msgstr "Konto" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -847,26 +873,24 @@ msgstr "Token żądania %s został unieważniony." #. TRANS: Title of the page notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth. #: actions/apioauthauthorize.php:621 -#, fuzzy msgid "You have successfully authorized the application" -msgstr "Pomyślnie upoważniono %s." +msgstr "Pomyślnie upoważniono aplikację" #. TRANS: Message notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth. #: actions/apioauthauthorize.php:625 -#, fuzzy msgid "" "Please return to the application and enter the following security code to " "complete the process." msgstr "" -"Proszę wrócić do %s i podać następujący kod bezpieczeństwa, aby ukończyć " -"proces." +"Proszę wrócić do aplikacji i podać następujący kod bezpieczeństwa, aby " +"ukończyć proces." #. TRANS: Title of the page notifying the user that the client application was successfully authorized to access the user's account with OAuth. #. TRANS: %s is the authorised application name. #: actions/apioauthauthorize.php:632 -#, fuzzy, php-format +#, php-format msgid "You have successfully authorized %s" -msgstr "Pomyślnie upoważniono %s." +msgstr "Pomyślnie upoważniono %s" #. TRANS: Message notifying the user that the client application was successfully authorized to access the user's account with OAuth. #. TRANS: %s is the authorised application name. @@ -969,16 +993,16 @@ msgstr "%1$s/ulubione wpisy od %2$s" #. TRANS: %1$s is the StatusNet sitename, %2$s is a user's full name, #. TRANS: %3$s is a user nickname. #: actions/apitimelinefavorites.php:120 -#, fuzzy, php-format +#, php-format msgid "%1$s updates favorited by %2$s / %3$s." -msgstr "Użytkownik %1$s aktualizuje ulubione według %2$s/%2$s." +msgstr "Użytkownik %1$s aktualizuje ulubione według %2$s/%3$s." #. TRANS: Server error displayed when generating an Atom feed fails. #. TRANS: %s is the error. #: actions/apitimelinegroup.php:138 -#, fuzzy, php-format +#, php-format msgid "Could not generate feed for group - %s" -msgstr "Nie można usunąć grupy %s." +msgstr "Nie można utworzyć kanału dla grupy - %s" #. TRANS: Title for timeline of most recent mentions of a user. #. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname. @@ -1009,9 +1033,8 @@ msgstr "Użytkownik %s aktualizuje od każdego." #. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. #: actions/apitimelineretweetedbyme.php:71 -#, fuzzy msgid "Unimplemented." -msgstr "Niezaimplementowana metoda." +msgstr "Niezaimplementowane." #. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. #: actions/apitimelineretweetedtome.php:108 @@ -1050,104 +1073,138 @@ msgstr "Metoda API jest w trakcie tworzenia." msgid "User not found." msgstr "Nie odnaleziono strony." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "Nie ma takiego załącznika." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Brak pseudonimu." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Brak rozmiaru." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Nieprawidłowy rozmiar." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Awatar" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Można wysłać osobisty awatar. Maksymalny rozmiar pliku to %s." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Użytkownik bez odpowiadającego profilu." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Ustawienia awatara" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Oryginał" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Podgląd" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Usuń" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Wyślij" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Przytnij" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "Nie wysłano pliku." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "Wybierz kwadratowy obszar obrazu do awatara" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Utracono dane pliku." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Zaktualizowano awatar." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Zaktualizowanie awatara nie powiodło się." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "Usunięto awatar." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "Użytkownik jest już zablokowany." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Zablokuj użytkownika" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1163,7 +1220,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1172,7 +1229,7 @@ msgstr "Nie" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Nie blokuj tego użytkownika" @@ -1182,7 +1239,7 @@ msgstr "Nie blokuj tego użytkownika" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1191,90 +1248,111 @@ msgstr "Tak" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Zablokuj tego użytkownika" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "Zapisanie informacji o blokadzie nie powiodło się." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "Nie ma takiej grupy." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "%s zablokowane profile" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s zablokowane profile, strona %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "Lista użytkowników zablokowanych w tej grupie." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Odblokuj użytkownika w tej grupie" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Odblokuj" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Odblokuj tego użytkownika" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Wyślij do %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Brak kodu potwierdzającego." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Nie odnaleziono kodu potwierdzającego." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "Ten kod potwierdzający nie jest przeznaczony dla ciebie." -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "Nierozpoznany typ adresu %s." -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "Ten adres został już potwierdzony." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1282,7 +1360,7 @@ msgstr "Ten adres został już potwierdzony." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1290,27 +1368,32 @@ msgstr "Ten adres został już potwierdzony." msgid "Couldn't update user." msgstr "Nie można zaktualizować użytkownika." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." -msgstr "Nie można usunąć potwierdzenia adresu e-mail." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." +msgstr "Nie można usunąć potwierdzenia komunikatora." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Potwierdź adres" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Adres \"%s\" został potwierdzony dla twojego konta." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Rozmowa" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Wpisy" @@ -1415,11 +1498,13 @@ msgstr "Nie usuwaj tej grupy" msgid "Delete this group" msgstr "Usuń tę grupę" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1717,49 +1802,49 @@ msgstr "Adres zwrotny URL jest nieprawidłowy." msgid "Could not update application." msgstr "Nie można zaktualizować aplikacji." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Zmodyfikuj grupę %s" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Musisz być zalogowany, aby utworzyć grupę." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Musisz być administratorem, aby zmodyfikować grupę." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Użyj tego formularza, aby zmodyfikować grupę." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Opis jest za długi (maksymalnie %d znaków)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Za dużo aliasów. Maksymalnie %d." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Nieprawidłowy alias: \"%s\"" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Nie można zaktualizować grupy." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Nie można utworzyć aliasów." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Zapisano opcje." @@ -1952,6 +2037,12 @@ msgstr "Brak oczekujących potwierdzeń do anulowania." msgid "That is the wrong email address." msgstr "To jest błędny adres e-mail." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Nie można usunąć potwierdzenia adresu e-mail." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2132,19 +2223,23 @@ msgstr "Nie można udzielić rol użytkownikom na tej witrynie." msgid "User already has this role." msgstr "Użytkownik ma już tę rolę." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "Nie podano profilu." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "Brak profilu o tym identyfikatorze." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "Nie podano grupy." @@ -2227,6 +2322,14 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "Można wysłać obraz logo grupy. Maksymalny rozmiar pliku to %s." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Wyślij" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Przytnij" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Wybierz kwadratowy obszar obrazu, który będzie logo." @@ -2369,15 +2472,18 @@ msgstr "" "Dlaczego nie [zarejestrujesz konta](%%action.register%%) i sam [utworzysz " "grupę](%%action.newgroup%%)." -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "Tylko administrator może odblokowywać członków grupy." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "Użytkownik nie został zablokowany w grupie." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Błąd podczas usuwania blokady." @@ -2972,10 +3078,12 @@ msgstr "Organizacja jest za długa (maksymalnie 255 znaków)." msgid "Could not create application." msgstr "Nie można utworzyć aplikacji." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Nowa grupa" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Użyj tego formularza, aby utworzyć nową grupę." @@ -3664,8 +3772,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 małe litery lub liczby, bez spacji i znaków przestankowych." #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Imię i nazwisko" @@ -3705,8 +3814,9 @@ msgid "Bio" msgstr "O mnie" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4427,7 +4537,8 @@ msgstr "Organizacja" msgid "Description" msgstr "Opis" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Statystyki" @@ -4445,6 +4556,11 @@ msgstr "Czynności aplikacji" msgid "Reset key & secret" msgstr "Przywrócenie klucza i sekretu" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Usuń" + #: actions/showapplication.php:261 msgid "Application info" msgstr "Informacje o aplikacji" @@ -4538,77 +4654,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "To jest sposób na współdzielenie tego, co chcesz." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "Grupa %s" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "Grupa %1$s, strona %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Profil grupy" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "Adres URL" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Wpis" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "Aliasy" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Działania grupy" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Kanał wpisów dla grupy %s (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Kanał wpisów dla grupy %s (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Kanał wpisów dla grupy %s (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "FOAF dla grupy %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Członkowie" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Brak)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Wszyscy członkowie" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Utworzono" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Członkowie" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4624,7 +4769,10 @@ msgstr "" "action.register%%%%), aby stać się częścią tej grupy i wiele więcej. " "([Przeczytaj więcej](%%%%doc.help%%%%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4637,24 +4785,31 @@ msgstr "" "narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się " "krótkimi wiadomościami o swoim życiu i zainteresowaniach. " -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Administratorzy" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "Nie ma takiej wiadomości." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "Tylko nadawca i odbiorca mogą przeczytać tę wiadomość." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Wiadomość do użytkownika %1$s na %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Wiadomość od użytkownika %1$s na %2$s" @@ -5101,12 +5256,14 @@ msgstr "Migawki będą wysyłane na ten adres URL" msgid "Save snapshot settings" msgstr "Zapisz ustawienia migawki" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "Nie jesteś subskrybowany do tego profilu." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "Nie można zapisać subskrypcji." @@ -5920,13 +6077,13 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Witaj w %1$s, @%2$s." #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "" "Nie określono pojedynczego użytkownika dla trybu pojedynczego użytkownika." #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "Wywołano kod pojedynczego użytkownika, kiedy nie był włączony." @@ -7096,7 +7253,8 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "Kanały" @@ -7258,39 +7416,60 @@ msgstr "Ta strona jest niedostępna dla akceptowanego typu medium" msgid "Unsupported image file format." msgstr "Nieobsługiwany format pliku obrazu." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "Ten plik jest za duży. Maksymalny rozmiar pliku to %s." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Częściowo wysłano." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Błąd systemu podczas wysyłania pliku." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "To nie jest obraz lub lub plik jest uszkodzony." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Utracono plik." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Nieznany typ pliku" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "MB" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "MB" +msgstr[1] "MB" +msgstr[2] "MB" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "KB" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "KB" +msgstr[1] "KB" +msgstr[2] "KB" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/jabber.php:387 #, php-format @@ -8189,6 +8368,13 @@ msgstr "Błąd podczas otwierania archiwum motywu." msgid "Top posters" msgstr "Najczęściej wysyłający wpisy" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Odblokuj" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "Usuń ograniczenie" @@ -8376,3 +8562,9 @@ msgstr "Nie podano użytkownika; używanie użytkownika zapasowego." #, php-format msgid "%d entries in backup." msgstr "%d wpisów w kopii zapasowej." + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "Opis jest za długi (maksymalnie %d znaków)." + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "Za dużo aliasów. Maksymalnie %d." diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index a150ea6966..be8cae38f5 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Core to Portuguese (Português) # Expored from translatewiki.net # +# Author: Brion # Author: Gallaecio # Author: Giro720 # Author: Hamilton Abreu @@ -13,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:09:30+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:42+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -119,6 +120,7 @@ msgstr "Página não foi encontrada." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -131,7 +133,7 @@ msgstr "Página não foi encontrada." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -309,11 +311,12 @@ msgstr "Não foi possível actualizar o utilizador." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -328,7 +331,7 @@ msgstr "Não foi possível gravar o perfil." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -506,43 +509,53 @@ msgstr "Não foi possível determinar o utilizador de origem." msgid "Could not find target user." msgstr "Não foi possível encontrar o utilizador de destino." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Utilizador só deve conter letras minúsculas e números. Sem espaços." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Utilizador já é usado. Tente outro." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Utilizador não é válido." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Página de ínicio não é uma URL válida." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -551,10 +564,11 @@ msgstr "Nome completo demasiado longo (máx. 255 caracteres)." #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -562,9 +576,11 @@ msgstr[0] "Descrição demasiado longa (máx. %d caracteres)." msgstr[1] "Descrição demasiado longa (máx. %d caracteres)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -572,7 +588,12 @@ msgstr "Localidade demasiado longa (máx. 255 caracteres)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, fuzzy, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -588,15 +609,19 @@ msgstr "Nome alternativo inválido: \"%s\"" #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Nome alternativo \"%s\" já em uso. Tente outro." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "Um nome alternativo não pode ser igual ao nome do utilizador." @@ -702,18 +727,18 @@ msgid "Request token already authorized." msgstr "Não tem autorização." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -732,12 +757,13 @@ msgid "Database error inserting oauth_token_association." msgstr "Erro na base de dados ao inserir o utilizador da aplicação OAuth." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -792,6 +818,7 @@ msgstr "Conta" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1043,104 +1070,138 @@ msgstr "Método da API em desenvolvimento." msgid "User not found." msgstr "Método da API não encontrado." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "Anexo não foi encontrado." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Nome de utilizador não definido." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Tamanho não definido." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Tamanho inválido." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Pode carregar o seu avatar pessoal. O tamanho máximo do ficheiro é %s." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Utilizador sem perfil correspondente." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Configurações do avatar" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Original" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Antevisão" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Apagar" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Carregar" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Cortar" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "Não foi carregado nenhum ficheiro." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "Escolha uma área quadrada da imagem para ser o seu avatar" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Perdi os dados do nosso ficheiro." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Avatar actualizado." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Falha ao actualizar avatar." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "Avatar apagado." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "Já bloqueou esse utilizador." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Bloquear utilizador" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1156,7 +1217,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1165,7 +1226,7 @@ msgstr "Não" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Não bloquear este utilizador" @@ -1175,7 +1236,7 @@ msgstr "Não bloquear este utilizador" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1184,90 +1245,111 @@ msgstr "Sim" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Bloquear este utilizador" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "Não foi possível gravar informação do bloqueio." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "Grupo não foi encontrado." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "%s perfis bloqueados" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "Perfis bloqueados de %1$s, página %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "Uma lista dos utilizadores com entrada bloqueada neste grupo." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Desbloquear utilizador do grupo" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Desbloquear" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Desbloquear este utilizador" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Publicar em %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Sem código de confimação." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Código de confirmação não encontrado" -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "Esse código de confirmação não é para si!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "Tipo do endereço %s não reconhecido." -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "Esse endereço já tinha sido confirmado." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1275,7 +1357,7 @@ msgstr "Esse endereço já tinha sido confirmado." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1283,27 +1365,32 @@ msgstr "Esse endereço já tinha sido confirmado." msgid "Couldn't update user." msgstr "Não foi possível actualizar o utilizador." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." -msgstr "Não foi possível apagar a confirmação do endereço electrónico." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." +msgstr "Não foi possível apagar a confirmação do mensageiro instantâneo." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Confirmar endereço" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "O endereço \"%s\" foi confirmado para a sua conta." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Conversação" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Notas" @@ -1414,11 +1501,13 @@ msgstr "Não apagar esta nota" msgid "Delete this group" msgstr "Apagar este utilizador" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1724,49 +1813,49 @@ msgstr "A URL de callback é inválida." msgid "Could not update application." msgstr "Não foi possível actualizar a aplicação." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Editar grupo %s" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Tem de iniciar uma sessão para criar o grupo." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Tem de ser administrador para editar o grupo." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Use este formulário para editar o grupo." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Descrição demasiado longa (máx. %d caracteres)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Demasiados nomes alternativos! Máx. %d." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Nome alternativo inválido: \"%s\"" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Não foi possível actualizar o grupo." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Não foi possível criar os nomes alternativos." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Opções gravadas." @@ -1963,6 +2052,12 @@ msgstr "Nenhuma confirmação pendente para cancelar." msgid "That is the wrong email address." msgstr "Esse endereço de correio electrónico está errado." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Não foi possível apagar a confirmação do endereço electrónico." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2142,19 +2237,23 @@ msgstr "Não pode atribuir funções aos utilizadores neste site." msgid "User already has this role." msgstr "O utilizador já tem esta função." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "Não foi especificado um perfil." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "Não foi encontrado um perfil com essa identificação." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "Não foi especificado um grupo." @@ -2241,6 +2340,14 @@ msgstr "" "Pode carregar uma imagem para logotipo do seu grupo. O tamanho máximo do " "ficheiro é %s." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Carregar" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Cortar" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Escolha uma área quadrada da imagem para ser o logotipo." @@ -2383,15 +2490,18 @@ msgstr "" "Podia [registar uma conta](%%action.register%%) e [criar o grupo](%%action." "newgroup%%) você mesmo!" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "Só um gestor pode desbloquear membros de um grupo." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "Acesso do utilizador ao grupo não foi bloqueado." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Erro ao remover o bloqueio." @@ -2984,10 +3094,12 @@ msgstr "Organização é demasiado longa (máx. 255 caracteres)." msgid "Could not create application." msgstr "Não foi possível criar a aplicação." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Grupo novo" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Use este formulário para criar um grupo novo." @@ -3691,8 +3803,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 letras minúsculas ou números, sem pontuação ou espaços" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Nome completo" @@ -3732,8 +3845,9 @@ msgid "Bio" msgstr "Biografia" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4460,7 +4574,8 @@ msgstr "Organização" msgid "Description" msgstr "Descrição" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Estatísticas" @@ -4478,6 +4593,11 @@ msgstr "Operações da aplicação" msgid "Reset key & secret" msgstr "Reiniciar chave e segredo" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Apagar" + #: actions/showapplication.php:261 msgid "Application info" msgstr "Informação da aplicação" @@ -4572,77 +4692,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Esta é uma forma de partilhar aquilo de que gosta." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "Grupo %s" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "Grupo %1$s, página %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Perfil do grupo" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Anotação" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "Nomes alternativos" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Acções do grupo" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Fonte de notas do grupo %s (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Fonte de notas do grupo %s (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Fonte de notas do grupo %s (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "FOAF do grupo %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Membros" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Nenhum)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Todos os membros" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Criado" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Membros" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4651,14 +4800,17 @@ msgid "" "their life and interests. [Join now](%%%%action.register%%%%) to become part " "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -"**%s** é um grupo de utilizadores no site %%site.name%%, um serviço de " +"**%s** é um grupo de utilizadores no site %%%%site.name%%%%, um serviço de " "[microblogues](http://en.wikipedia.org/wiki/Micro-blogging) baseado no " "programa de Software Livre [StatusNet](http://status.net/). Os membros deste " "grupo partilham mensagens curtas acerca das suas vidas e interesses. " -"[Registe-se agora](%%action.register%%) para se juntar a este grupo e a " -"muitos mais! ([Saber mais](%%doc.help%%))" +"[Registe-se agora](%%%%action.register%%%%) para se juntar a este grupo e a " +"muitos mais! ([Saber mais](%%%%doc.help%%%%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4666,29 +4818,36 @@ msgid "" "[StatusNet](http://status.net/) tool. Its members share short messages about " "their life and interests. " msgstr "" -"**%s** é um grupo de utilizadores no site %%site.name%%, um serviço de " +"**%s** é um grupo de utilizadores no site %%%%site.name%%%%, um serviço de " "[microblogues](http://en.wikipedia.org/wiki/Micro-blogging) baseado no " "programa de Software Livre [StatusNet](http://status.net/). Os membros deste " "grupo partilham mensagens curtas acerca das suas vidas e interesses. " -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Gestores" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "Mensagem não foi encontrada." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "Só o remetente e o destinatário podem ler esta mensagem." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Mensagem para %1$s a %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Mensagem de %1$s a %2$s" @@ -4762,11 +4921,11 @@ msgid "" "[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -"**%s** tem uma conta no site %%site.name%%, um serviço de [microblogues]" +"**%s** tem uma conta no site %%%%site.name%%%%, um serviço de [microblogues]" "(http://en.wikipedia.org/wiki/Micro-blogging) baseado no programa de " -"Software Livre [StatusNet](http://status.net/). [Registe-se agora](%%action." -"register%%) para seguir as notas de **%s** e de muitos mais! ([Saber mais](%%" -"doc.help%%))" +"Software Livre [StatusNet](http://status.net/). [Registe-se agora](%%%%" +"action.register%%%%) para seguir as notas de **%s** e de muitos mais! " +"([Saber mais](%%%%doc.help%%%%))" #: actions/showstream.php:248 #, php-format @@ -4775,7 +4934,7 @@ msgid "" "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. " msgstr "" -"**%s** tem uma conta no site %%site.name%%, um serviço de [microblogues]" +"**%s** tem uma conta no site %%%%site.name%%%%, um serviço de [microblogues]" "(http://en.wikipedia.org/wiki/Micro-blogging) baseado no programa de " "Software Livre [StatusNet](http://status.net/). " @@ -5134,12 +5293,14 @@ msgstr "Instantâneos serão enviados para esta URL" msgid "Save snapshot settings" msgstr "Gravar configurações do instantâneo" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "Não subscreveu esse perfil." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "Não foi possível gravar a subscrição." @@ -5951,12 +6112,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "%1$s dá-lhe as boas-vindas, @%2$s!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "Nenhum utilizador único definido para o modo de utilizador único." #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -7125,7 +7286,8 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -7284,39 +7446,57 @@ msgstr "Esta página não está disponível num formato que você aceite" msgid "Unsupported image file format." msgstr "Formato do ficheiro da imagem não é suportado." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "Esse ficheiro é demasiado grande. O tamanho máximo de ficheiro é %s." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Transferência parcial." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Ocorreu um erro de sistema ao transferir o ficheiro." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "Ficheiro não é uma imagem ou está corrompido." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Perdi o nosso ficheiro." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Tipo do ficheiro é desconhecido" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "MB" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "MB" +msgstr[1] "MB" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "kB" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "kB" +msgstr[1] "kB" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" #: lib/jabber.php:387 #, php-format @@ -8216,6 +8396,13 @@ msgstr "Ocorreu um erro ao abrir o arquivo do tema." msgid "Top posters" msgstr "Quem mais publica" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Desbloquear" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "Permitir notas públicas" @@ -8396,3 +8583,9 @@ msgstr "Não foi especificado um ID de utilizador." #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "Descrição demasiado longa (máx. %d caracteres)." + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "Demasiados nomes alternativos! Máx. %d." diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index f27f3c76d7..c884667c1e 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -15,18 +15,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:09:32+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:43+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -122,6 +122,7 @@ msgstr "Esta página não existe." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -134,7 +135,7 @@ msgstr "Esta página não existe." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -314,11 +315,12 @@ msgstr "Não foi possível atualizar o usuário." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -333,7 +335,7 @@ msgstr "Não foi possível salvar o perfil." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -515,9 +517,11 @@ msgstr "Não foi possível determinar o usuário de origem." msgid "Could not find target user." msgstr "Não foi possível encontrar usuário de destino." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" @@ -525,35 +529,43 @@ msgstr "" "ter e espaços." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Esta identificação já está em uso. Tente outro." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Não é uma identificação válida." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "A URL informada não é válida." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -562,10 +574,11 @@ msgstr "Nome completo muito extenso (máx. 255 caracteres)" #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -573,9 +586,11 @@ msgstr[0] "Descrição muito extensa (máximo %d caracteres)." msgstr[1] "Descrição muito extensa (máximo %d caracteres)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -583,7 +598,12 @@ msgstr "Localização muito extensa (máx. 255 caracteres)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, fuzzy, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -599,15 +619,19 @@ msgstr "Apelido inválido: \"%s\"." #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "O apelido \"%s\" já está em uso. Tente outro." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "O apelido não pode ser igual à identificação." @@ -713,18 +737,18 @@ msgid "Request token already authorized." msgstr "Você não está autorizado." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -745,12 +769,13 @@ msgstr "" "Erro no banco de dados durante a inserção do usuário da aplicativo OAuth." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -807,6 +832,7 @@ msgstr "Conta" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1057,105 +1083,139 @@ msgstr "O método da API está em construção." msgid "User not found." msgstr "O método da API não foi encontrado!" +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "Este anexo não existe." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Nenhuma identificação." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Sem tamanho definido." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Tamanho inválido." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" "Você pode enviar seu avatar pessoal. O tamanho máximo do arquivo é de %s." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Usuário sem um perfil correspondente" -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Configurações do avatar" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Original" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Pré-visualizar" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Excluir" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Enviar" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Cortar" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "Não foi enviado nenhum arquivo." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "Selecione uma área quadrada da imagem para ser seu avatar" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Os dados do nosso arquivo foram perdidos." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "O avatar foi atualizado." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Não foi possível atualizar o avatar." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "O avatar foi excluído." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "Você já bloqueou esse usuário." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Bloquear usuário" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1172,7 +1232,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1181,7 +1241,7 @@ msgstr "Não" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Não bloquear este usuário" @@ -1191,7 +1251,7 @@ msgstr "Não bloquear este usuário" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1200,90 +1260,111 @@ msgstr "Sim" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Bloquear este usuário" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "Não foi possível salvar a informação de bloqueio." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "Esse grupo não existe." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "Perfis bloqueados no %s" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "Perfis bloqueados no %1$s, pág. %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "Uma lista dos usuários proibidos de se associarem a este grupo." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Desbloquear o usuário do grupo" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Desbloquear" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Desbloquear este usuário" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Publicar em %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Nenhum código de confirmação." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "O código de confirmação não foi encontrado." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "Esse não é o seu código de confirmação!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "Tipo de endereço %s não reconhecido." -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "Esse endereço já foi confirmado." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1291,7 +1372,7 @@ msgstr "Esse endereço já foi confirmado." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1299,27 +1380,32 @@ msgstr "Esse endereço já foi confirmado." msgid "Couldn't update user." msgstr "Não foi possível atualizar o usuário." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." -msgstr "Não foi possível excluir a confirmação de e-mail." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." +msgstr "Não foi possível excluir a confirmação do mensageiro instantâneo." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Confirme o endereço" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "O endereço \"%s\" foi confirmado para sua conta." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Conversa" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Mensagens" @@ -1430,11 +1516,13 @@ msgstr "Não excluir esta mensagem." msgid "Delete this group" msgstr "Excluir este usuário" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1740,49 +1828,49 @@ msgstr "A URL de retorno não é válida." msgid "Could not update application." msgstr "Não foi possível atualizar a aplicação." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Editar o grupo %s" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Você deve estar autenticado para criar um grupo." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Você deve ser um administrador para editar o grupo." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Use esse formulário para editar o grupo." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Descrição muito extensa (máximo %d caracteres)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Muitos apelidos! O máximo são %d." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Apelido inválido: \"%s\"" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Não foi possível atualizar o grupo." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Não foi possível criar os apelidos." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "As configurações foram salvas." @@ -1978,6 +2066,12 @@ msgstr "Nenhuma confirmação pendente para cancelar." msgid "That is the wrong email address." msgstr "Esse é o endereço de e-mail errado." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Não foi possível excluir a confirmação de e-mail." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2159,19 +2253,23 @@ msgstr "Você não pode definir papéis para os usuários neste site." msgid "User already has this role." msgstr "O usuário já possui este papel." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "Não foi especificado nenhum perfil." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "Não foi encontrado nenhum perfil com esse ID." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "Não foi especificado nenhum grupo." @@ -2259,6 +2357,14 @@ msgstr "" "Você pode enviar uma imagem de logo para o seu grupo. O tamanho máximo do " "arquivo é %s." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Enviar" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Cortar" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Selecione uma área quadrada da imagem para definir a logo" @@ -2401,15 +2507,18 @@ msgstr "" "Por que você não [se cadastra](%%action.register%%) e [cria o grupo](%%" "action.newgroup%%) você mesmo?" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "Somente um administrador pode desbloquear membros do grupo." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "O usuário não está bloqueado no grupo." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Erro na remoção do bloqueio." @@ -3006,10 +3115,12 @@ msgstr "A organização é muito extensa (máx. 255 caracteres)." msgid "Could not create application." msgstr "Não foi possível criar a aplicação." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Novo grupo" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Utilize este formulário para criar um novo grupo." @@ -3717,8 +3828,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 letras minúsculas ou números, sem pontuações ou espaços" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Nome completo" @@ -3758,8 +3870,9 @@ msgid "Bio" msgstr "Descrição" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4486,7 +4599,8 @@ msgstr "Organização" msgid "Description" msgstr "Descrição" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Estatísticas" @@ -4504,6 +4618,11 @@ msgstr "Ações da aplicação" msgid "Reset key & secret" msgstr "Restaurar a chave e o segredo" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Excluir" + #: actions/showapplication.php:261 msgid "Application info" msgstr "Informação da aplicação" @@ -4596,77 +4715,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Esta é uma forma de compartilhar o que você gosta." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "Grupo %s" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "Grupo %1$s, pág. %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Perfil do grupo" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "Site" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Mensagem" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "Apelidos" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Ações do grupo" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Fonte de mensagens do grupo %s (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Fonte de mensagens do grupo %s (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Fonte de mensagens do grupo %s (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "FOAF para o grupo %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Membros" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Nenhum)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Todos os membros" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Criado" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Membros" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4682,7 +4830,10 @@ msgstr "" "para se tornar parte deste grupo e muito mais! ([Saiba mais](%%%%doc.help%%%" "%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4695,24 +4846,31 @@ msgstr "" "[StatusNet](http://status.net/). Seus membros compartilham mensagens curtas " "sobre suas vidas e interesses. " -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Administradores" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "Essa mensagem não existe." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "Apenas o remetente e o destinatário podem ler esta mensagem." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Mensagem para %1$s no %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Mensagem de %1$s no %2$s" @@ -5158,12 +5316,14 @@ msgstr "As estatísticas serão enviadas para esta URL" msgid "Save snapshot settings" msgstr "Salvar as configurações de estatísticas" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "Você não está assinando esse perfil." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "Não foi possível salvar a assinatura." @@ -5977,12 +6137,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Bem vindo(a) a %1$s, @%2$s!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "Nenhum usuário definido para o modo de usuário único." #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -7156,7 +7316,8 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -7317,39 +7478,57 @@ msgstr "Esta página não está disponível em um tipo de mídia que você aceit msgid "Unsupported image file format." msgstr "Formato de imagem não suportado." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "O arquivo é muito grande. O tamanho máximo é de %s." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Envio parcial." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Erro no sistema durante o envio do arquivo." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "Imagem inválida ou arquivo corrompido." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Nosso arquivo foi perdido." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Tipo de arquivo desconhecido" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "Mb" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "Mb" +msgstr[1] "Mb" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "Kb" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "Kb" +msgstr[1] "Kb" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" #: lib/jabber.php:387 #, php-format @@ -8251,6 +8430,13 @@ msgstr "Ocorreu um erro ao abrir o arquivo do tema." msgid "Top posters" msgstr "Quem mais publica" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Desbloquear" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "Tirar do isolamento" @@ -8433,3 +8619,9 @@ msgstr "Não foi especificado nenhum ID de usuário." #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "Descrição muito extensa (máximo %d caracteres)." + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "Muitos apelidos! O máximo são %d." diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index bab3e27b71..a6f3602335 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -14,18 +14,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:09:35+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:44+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -122,6 +122,7 @@ msgstr "Нет такой страницы." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -134,7 +135,7 @@ msgstr "Нет такой страницы." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -312,11 +313,12 @@ msgstr "Не удаётся обновить пользователя." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -331,7 +333,7 @@ msgstr "Не удаётся сохранить профиль." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -515,44 +517,54 @@ msgstr "Не удаётся определить исходного пользо msgid "Could not find target user." msgstr "Не удаётся найти целевого пользователя." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Имя должно состоять только из прописных букв и цифр и не иметь пробелов." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Такое имя уже используется. Попробуйте какое-нибудь другое." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Неверное имя." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "URL Главной страницы неверен." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -561,10 +573,11 @@ msgstr "Полное имя слишком длинное (не больше 255 #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -573,9 +586,11 @@ msgstr[1] "Слишком длинное описание (максимум %d msgstr[2] "Слишком длинное описание (максимум %d символов)" #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -583,7 +598,12 @@ msgstr "Слишком длинное месторасположение (мак #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, fuzzy, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -600,15 +620,19 @@ msgstr "Ошибочный псевдоним: «%s»." #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Алиас «%s» уже используется. Попробуйте какой-нибудь другой." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "Алиас не может совпадать с именем." @@ -713,18 +737,18 @@ msgid "Request token already authorized." msgstr "Вы не авторизованы." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -743,12 +767,13 @@ msgid "Database error inserting oauth_token_association." msgstr "Ошибка базы данных при добавлении пользователя приложения OAuth." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -804,6 +829,7 @@ msgstr "Аккаунт" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1054,105 +1080,139 @@ msgstr "Метод API реконструируется." msgid "User not found." msgstr "Метод API не найден." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "Нет такого вложения." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Нет имени." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Нет размера." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Неверный размер." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Аватара" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" "Вы можете загрузить свою аватару. Максимальный размер файла составляет %s." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Пользователь без соответствующего профиля." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Настройки аватары" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Оригинал" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Просмотр" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Удалить" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Загрузить" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Обрезать" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "Файл не загружен." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "Подберите нужный квадратный участок для вашей аватары" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Потеряна информация о файле." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Аватара обновлена." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Неудача при обновлении аватары." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "Аватара удалена." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "Вы уже заблокировали этого пользователя." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Заблокировать пользователя." -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1168,7 +1228,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1177,7 +1237,7 @@ msgstr "Нет" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Не блокировать этого пользователя" @@ -1187,7 +1247,7 @@ msgstr "Не блокировать этого пользователя" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1196,90 +1256,111 @@ msgstr "Да" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Заблокировать пользователя." -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "Не удаётся сохранить информацию о блокировании." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "Нет такой группы." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "Заблокированные профили %s" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "Заблокированные профили %1$s, страница %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "Список пользователей, заблокированных от присоединения к этой группе." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Разблокировать пользователя в группе." -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Разблокировать" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Разблокировать пользователя." #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Отправить в %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Нет кода подтверждения." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Код подтверждения не найден." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "Это не Ваш код подтверждения!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "Нераспознанный тип адреса %s." -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "Этот адрес уже подтверждён." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1287,7 +1368,7 @@ msgstr "Этот адрес уже подтверждён." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1295,27 +1376,32 @@ msgstr "Этот адрес уже подтверждён." msgid "Couldn't update user." msgstr "Не удаётся обновить пользователя." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." -msgstr "Не удаётся удалить подверждение по электронному адресу." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." +msgstr "Не удаётся удалить подверждение IM." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Подтвердить адрес" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Адрес «%s» подтверждён для вашего аккаунта." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Дискуссия" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Записи" @@ -1424,11 +1510,13 @@ msgstr "Не удаляйте эту группу" msgid "Delete this group" msgstr "Удалить эту группу" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1732,49 +1820,49 @@ msgstr "URL-адрес обратного вызова недействител msgid "Could not update application." msgstr "Не удаётся обновить приложение." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Изменить информацию о группе %s" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Вы должны авторизоваться, чтобы создать новую группу." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Вы должны быть администратором, чтобы изменять информацию о группе." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Заполните информацию о группе в следующие поля" -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Слишком длинное описание (максимум %d символов)" - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Слишком много алиасов! Максимальное число — %d." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Неверный алиас: «%s»" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Не удаётся обновить информацию о группе." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Не удаётся создать алиасы." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Настройки сохранены." @@ -1976,6 +2064,12 @@ msgstr "Нет подтверждения отказа." msgid "That is the wrong email address." msgstr "Это неверный адрес эл. почты." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Не удаётся удалить подверждение по электронному адресу." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2156,19 +2250,23 @@ msgstr "Вы не можете назначать пользователю ро msgid "User already has this role." msgstr "Пользователь уже имеет эту роль." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "Профиль не определен." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "Нет профиля с таким ID." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "Группа не определена." @@ -2255,6 +2353,14 @@ msgstr "" "Здесь вы можете загрузить логотип для группы. Максимальный размер файла " "составляет %s." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Загрузить" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Обрезать" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Подберите нужный квадратный участок для вашего логотипа." @@ -2397,15 +2503,18 @@ msgstr "" "Почему бы не [зарегистрироваться](%%action.register%%), чтобы [создать " "группу](%%action.newgroup%%) самому?" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "Только администратор может разблокировать участников группы." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "Пользователь не заблокировал вас из группы." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Ошибка при удалении данного блока." @@ -3006,10 +3115,12 @@ msgstr "Слишком длинное название организации ( msgid "Could not create application." msgstr "Не удаётся создать приложение." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Новая группа" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Используйте эту форму для создания новой группы." @@ -3708,8 +3819,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 латинских строчных буквы или цифры, без пробелов" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Полное имя" @@ -3750,8 +3862,9 @@ msgid "Bio" msgstr "Биография" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4473,7 +4586,8 @@ msgstr "Организация" msgid "Description" msgstr "Описание" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Статистика" @@ -4491,6 +4605,11 @@ msgstr "Действия приложения" msgid "Reset key & secret" msgstr "Сбросить ключ и секретную фразу" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Удалить" + #: actions/showapplication.php:261 msgid "Application info" msgstr "Информация о приложении" @@ -4584,77 +4703,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Это способ поделиться тем, что вам нравится." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "Группа %s" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "Группа %1$s, страница %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Профиль группы" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Запись" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "Алиасы" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Действия группы" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Лента записей группы %s (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Лента записей группы %s (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Лента записей группы %s (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "FOAF для группы %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Участники" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(пока ничего нет)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Все участники" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Создано" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Участники" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4670,7 +4818,10 @@ msgstr "" "action.register%%%%), чтобы стать участником группы и получить множество " "других возможностей! ([Читать далее](%%%%doc.help%%%%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4683,24 +4834,31 @@ msgstr "" "обеспечении [StatusNet](http://status.net/). Участники обмениваются " "короткими сообщениями о своей жизни и интересах. " -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Администраторы" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "Нет такого сообщения." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "Только отправитель и получатель могут читать это сообщение." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Сообщение для %1$s на %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Сообщение от %1$s на %2$s" @@ -5149,12 +5307,14 @@ msgstr "Снимки будут отправляться по этому URL-а msgid "Save snapshot settings" msgstr "Сохранить настройки снимка" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "Вы не подписаны на этот профиль." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "Не удаётся сохранить подписку." @@ -5968,12 +6128,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Добро пожаловать на %1$s, @%2$s!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "Ни задан пользователь для однопользовательского режима." #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -7148,7 +7308,8 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -7308,39 +7469,60 @@ msgstr "Страница недоступна для того типа, кото msgid "Unsupported image file format." msgstr "Неподдерживаемый формат файла изображения." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "Этот файл слишком большой. Максимальный размер файла составляет %s." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Частичная загрузка." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Системная ошибка при загрузке файла." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "Не является изображением или повреждённый файл." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Потерян файл." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Неподдерживаемый тип файла" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "МБ" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "МБ" +msgstr[1] "МБ" +msgstr[2] "МБ" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "КБ" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "КБ" +msgstr[1] "КБ" +msgstr[2] "КБ" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/jabber.php:387 #, php-format @@ -8235,6 +8417,13 @@ msgstr "Ошибка открытия архива темы." msgid "Top posters" msgstr "Самые активные" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Разблокировать" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "Снять режим песочницы" @@ -8425,3 +8614,9 @@ msgstr "Не указан идентификатор пользователя." #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "Слишком длинное описание (максимум %d символов)" + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "Слишком много алиасов! Максимальное число — %d." diff --git a/locale/statusnet.pot b/locale/statusnet.pot index aafae13c14..375c6bc743 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -111,6 +111,7 @@ msgstr "" #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -123,7 +124,7 @@ msgstr "" #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -293,11 +294,12 @@ msgstr "" #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -312,7 +314,7 @@ msgstr "" #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -483,43 +485,53 @@ msgstr "" msgid "Could not find target user." msgstr "" +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "" #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "" #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "" #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 msgid "Full name is too long (maximum 255 characters)." msgstr "" @@ -527,10 +539,11 @@ msgstr "" #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -538,16 +551,23 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 msgid "Location is too long (maximum 255 characters)." msgstr "" #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -563,15 +583,19 @@ msgstr "" #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "" #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "" @@ -674,18 +698,18 @@ msgid "Request token already authorized." msgstr "" #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -703,12 +727,13 @@ msgid "Database error inserting oauth_token_association." msgstr "" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -756,6 +781,7 @@ msgstr "" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1000,104 +1026,135 @@ msgstr "" msgid "User not found." msgstr "" +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "" -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "" -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "" -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "" +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "" -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +msgctxt "BUTTON" msgid "Delete" msgstr "" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +msgctxt "BUTTON" msgid "Upload" msgstr "" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +msgctxt "BUTTON" msgid "Crop" msgstr "" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "" -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "" -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "" -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "" -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "" -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "" -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1110,7 +1167,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1119,7 +1176,7 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "" @@ -1129,7 +1186,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1138,90 +1195,110 @@ msgstr "" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "" +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "" -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "" -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +msgctxt "BUTTON" msgid "Unblock" msgstr "" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "" +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "" -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "" -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "" +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1229,7 +1306,7 @@ msgstr "" #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1237,27 +1314,31 @@ msgstr "" msgid "Couldn't update user." msgstr "" -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +msgid "Could not delete address confirmation." msgstr "" -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "" -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "" @@ -1357,11 +1438,13 @@ msgstr "" msgid "Delete this group" msgstr "" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1655,49 +1738,49 @@ msgstr "" msgid "Could not update application." msgstr "" -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "" -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "" -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "" - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "" +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "" -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "" @@ -1884,6 +1967,12 @@ msgstr "" msgid "That is the wrong email address." msgstr "" +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "" + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2058,19 +2147,23 @@ msgstr "" msgid "User already has this role." msgstr "" +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "" -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "" -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "" @@ -2150,6 +2243,14 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" @@ -2281,15 +2382,18 @@ msgid "" "action.newgroup%%) yourself!" msgstr "" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "" -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "" -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "" @@ -2827,10 +2931,12 @@ msgstr "" msgid "Could not create application." msgstr "" +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" @@ -3499,8 +3605,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "" @@ -3539,8 +3646,9 @@ msgid "Bio" msgstr "" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4206,7 +4314,8 @@ msgstr "" msgid "Description" msgstr "" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "" @@ -4224,6 +4333,11 @@ msgstr "" msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "" + #: actions/showapplication.php:261 msgid "Application info" msgstr "" @@ -4307,77 +4421,104 @@ msgstr "" msgid "This is a way to share what you like." msgstr "" -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +msgctxt "LABEL" msgid "Created" msgstr "" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +msgctxt "LABEL" +msgid "Members" +msgstr "" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4387,7 +4528,10 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4396,24 +4540,31 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "" -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "" -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "" @@ -4835,12 +4986,14 @@ msgstr "" msgid "Save snapshot settings" msgstr "" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "" +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "" @@ -5603,12 +5756,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "" #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -6706,7 +6859,8 @@ msgstr "" msgid "FOAF" msgstr "" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6864,39 +7018,57 @@ msgstr "" msgid "Unsupported image file format." msgstr "" -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "" -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "" #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "" -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "" -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "" -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "" +msgstr[1] "" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" #: lib/jabber.php:387 #, php-format @@ -7678,6 +7850,12 @@ msgstr "" msgid "Top posters" msgstr "" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +msgctxt "TITLE" +msgid "Unblock" +msgstr "" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index 48da6d8d0f..902a554baa 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:09:37+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:46+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -118,6 +118,7 @@ msgstr "Ingen sådan sida" #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -130,7 +131,7 @@ msgstr "Ingen sådan sida" #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -306,11 +307,12 @@ msgstr "Kunde inte uppdatera användare." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -325,7 +327,7 @@ msgstr "Kunde inte spara profil." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -503,44 +505,54 @@ msgstr "Kunde inte fastställa användare hos källan." msgid "Could not find target user." msgstr "Kunde inte hitta målanvändare." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Smeknamnet får endast innehålla små bokstäver eller siffror, inga mellanslag." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Smeknamnet används redan. Försök med ett annat." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Inte ett giltigt smeknamn." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Hemsida är inte en giltig webbadress." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -549,10 +561,11 @@ msgstr "Fullständigt namn är för långt (max 255 tecken)." #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -560,9 +573,11 @@ msgstr[0] "Beskrivning är för lång (max %d tecken)." msgstr[1] "Beskrivning är för lång (max %d tecken)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -570,7 +585,12 @@ msgstr "Beskrivning av plats är för lång (max 255 tecken)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, fuzzy, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -586,15 +606,19 @@ msgstr "Ogiltigt alias: \"%s\"." #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias \"%s\" används redan. Försök med ett annat." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "Alias kan inte vara samma som smeknamn." @@ -700,18 +724,18 @@ msgid "Request token already authorized." msgstr "Du har inte tillstånd." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -730,12 +754,13 @@ msgid "Database error inserting oauth_token_association." msgstr "Databasfel vid infogning av OAuth-applikationsanvändare." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -790,6 +815,7 @@ msgstr "Konto" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1040,105 +1066,139 @@ msgstr "API-metoden är under uppbyggnad." msgid "User not found." msgstr "API-metod hittades inte." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "Ingen sådan bilaga." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Inget smeknamn." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Ingen storlek." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Ogiltig storlek." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" "Du kan ladda upp din personliga avatar. Den maximala filstorleken är %s." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Användare utan matchande profil." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Avatarinställningar" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Orginal" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Förhandsgranska" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Ta bort" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Ladda upp" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Beskär" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "Ingen fil laddades upp." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "Välj ett kvadratiskt område i bilden som din avatar" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Förlorade vår fildata." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Avatar uppdaterad." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Misslyckades uppdatera avatar." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "Avatar borttagen." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "Du har redan blockerat denna användare." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Blockera användare" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1154,7 +1214,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1163,7 +1223,7 @@ msgstr "Nej" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Blockera inte denna användare" @@ -1173,7 +1233,7 @@ msgstr "Blockera inte denna användare" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1182,91 +1242,112 @@ msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Blockera denna användare" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "Misslyckades att spara blockeringsinformation." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "Ingen sådan grupp." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "%s blockerade profiler" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s blockerade profiler, sida %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "" "En lista med de användare som blockerats från att gå med i denna grupp." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Häv blockering av användare från grupp" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Häv blockering" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Häv blockering av denna användare" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Posta till %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Ingen bekräftelsekod." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Bekräftelsekod kunde inte hittas." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "Denna bekräftelsekod är inte för dig!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "Adresstypen %s känns inte igen." -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "Denna adress har redan blivit bekräftad." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1274,7 +1355,7 @@ msgstr "Denna adress har redan blivit bekräftad." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1282,27 +1363,32 @@ msgstr "Denna adress har redan blivit bekräftad." msgid "Couldn't update user." msgstr "Kunde inte uppdatera användare." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." -msgstr "Kunde inte ta bort e-postbekräftelse." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." +msgstr "Kunde inte ta bort bekräftelse för snabbmeddelanden." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Bekräfta adress" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Adressen \"%s\" har blivit bekräftad för ditt konto." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Konversationer" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Notiser" @@ -1413,11 +1499,13 @@ msgstr "Ta inte bort denna notis" msgid "Delete this group" msgstr "Ta bort denna användare" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1721,49 +1809,49 @@ msgstr "Webbadress för anrop är inte giltig." msgid "Could not update application." msgstr "Kunde inte uppdatera applikation." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Redigera %s grupp" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Du måste vara inloggad för att skapa en grupp." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Du måste vara en administratör för att redigera gruppen." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Använd detta formulär för att redigera gruppen." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Beskrivning är för lång (max %d tecken)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "För många alias! Maximum %d." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Ogiltigt alias: \"%s\"" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Kunde inte uppdatera grupp." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Kunde inte skapa alias." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Alternativ sparade." @@ -1956,6 +2044,12 @@ msgstr "Ingen väntande bekräftelse att avbryta." msgid "That is the wrong email address." msgstr "Detta är fel e-postadress." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Kunde inte ta bort e-postbekräftelse." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2136,19 +2230,23 @@ msgstr "Du kan inte bevilja användare roller på denna webbplats." msgid "User already has this role." msgstr "Användaren har redan denna roll." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "Ingen profil angiven." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "Ingen profil med det ID:t." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "Ingen grupp angiven." @@ -2234,6 +2332,14 @@ msgstr "" "Du kan ladda upp en logotypbild för din grupp. Den maximala filstorleken är %" "s." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Ladda upp" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Beskär" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Välj ett kvadratiskt område i bilden som logotyp" @@ -2377,15 +2483,18 @@ msgstr "" "Varför inte [registrera ett konto](%%action.register%%) och [skapa gruppen](%" "%action.newgroup%%) själv!" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "Bara en administratör kan häva blockering av gruppmedlemmar." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "Användare är inte blockerad från grupp." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Fel vid hävning av blockering." @@ -2978,10 +3087,12 @@ msgstr "Organisation är för lång (max 255 tecken)." msgid "Could not create application." msgstr "Kunde inte skapa applikation." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Ny grupp" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Använd detta formulär för att skapa en ny grupp." @@ -3685,8 +3796,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 små bokstäver eller nummer, inga punkter eller mellanslag" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Fullständigt namn" @@ -3726,8 +3838,9 @@ msgid "Bio" msgstr "Biografi" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4451,7 +4564,8 @@ msgstr "Organisation" msgid "Description" msgstr "Beskrivning" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Statistik" @@ -4469,6 +4583,11 @@ msgstr "Åtgärder för applikation" msgid "Reset key & secret" msgstr "Återställ nyckel & hemlighet" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Ta bort" + #: actions/showapplication.php:261 msgid "Application info" msgstr "Information om applikation" @@ -4562,77 +4681,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Detta är ett sätt att dela med av det du gillar." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "%s grupp" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "%1$s grupp, sida %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Grupprofil" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Notis" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "Alias" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Åtgärder för grupp" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Flöde av notiser för %s grupp (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Flöde av notiser för %s grupp (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Flöde av notiser för %s grupp (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "FOAF för %s grupp" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Medlemmar" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Ingen)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Alla medlemmar" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Skapad" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Medlemmar" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4647,7 +4795,10 @@ msgstr "" "sina liv och intressen. [Gå med nu](%%%%action.register%%%%) för att bli en " "del av denna grupp och många fler! ([Läs mer](%%%%doc.help%%%%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4660,24 +4811,31 @@ msgstr "" "[StatusNet](http://status.net/). Dess medlemmar delar korta meddelande om " "sina liv och intressen. " -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Administratörer" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "Inget sådant meddelande." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "Endast avsändaren och mottagaren kan läsa detta meddelande." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Meddelande till %1$s på %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Meddelande från %1$s på %2$s" @@ -5120,12 +5278,14 @@ msgstr "Ögonblicksbild kommer skickat till denna URL" msgid "Save snapshot settings" msgstr "Spara inställningar för ögonblicksbild" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "Du är inte prenumerat hos den profilen." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "Kunde inte spara prenumeration." @@ -5937,12 +6097,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Välkommen till %1$s, @%2$s!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "Ingen enskild användare definierad för enanvändarläge." #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -7107,7 +7267,8 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -7265,39 +7426,57 @@ msgstr "Denna sida är inte tillgänglig i den mediatyp du accepterat" msgid "Unsupported image file format." msgstr "Bildfilens format stödjs inte." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "Denna fil är för stor. Den maximala filstorleken är %s." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Bitvis uppladdad." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Systemfel vid uppladdning av fil." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "Inte en bildfil eller så är filen korrupt." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Förlorade vår fil." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Okänd filtyp" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "MB" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "MB" +msgstr[1] "MB" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "kB" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "kB" +msgstr[1] "kB" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" #: lib/jabber.php:387 #, php-format @@ -8193,6 +8372,13 @@ msgstr "Fel vid öppning temaarkiv." msgid "Top posters" msgstr "Toppostare" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Häv blockering" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "Flytta från sandlådan" @@ -8373,3 +8559,9 @@ msgstr "Ingen användar-ID angiven." #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "Beskrivning är för lång (max %d tecken)." + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "För många alias! Maximum %d." diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 287168c08f..ac8fe24a27 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:09:39+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:47+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -116,6 +116,7 @@ msgstr "అటువంటి పేజీ లేదు." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -128,7 +129,7 @@ msgstr "అటువంటి పేజీ లేదు." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -301,11 +302,12 @@ msgstr "వాడుకరిని తాజాకరించలేకున #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -321,7 +323,7 @@ msgstr "ప్రొఫైలుని భద్రపరచలేకున్ #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -495,43 +497,53 @@ msgstr "లక్ష్యిత వాడుకరిని కనుగొన msgid "Could not find target user." msgstr "లక్ష్యిత వాడుకరిని కనుగొనలేకపోయాం." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "పేరులో చిన్నబడి అక్షరాలు మరియు అంకెలు మాత్రమే ఖాళీలు లేకుండా ఉండాలి." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్నారు. మరోటి ప్రయత్నించండి." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "సరైన పేరు కాదు." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "హోమ్ పేజీ URL సరైనది కాదు." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -540,10 +552,11 @@ msgstr "పూర్తి పేరు చాలా పెద్దగా ఉ #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -551,9 +564,11 @@ msgstr[0] "వివరణ చాలా పెద్దగా ఉంది (%d msgstr[1] "వివరణ చాలా పెద్దగా ఉంది (%d అక్షరాలు గరిష్ఠం)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -561,7 +576,12 @@ msgstr "ప్రాంతం పేరు మరీ పెద్దగా ఉ #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, fuzzy, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -577,15 +597,19 @@ msgstr "తప్పుడు మారుపేరు: \"%s\"." #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "\"%s\" అన్న మారుపేరుని ఇప్పటికే వాడుతున్నారు. మరొకటి ప్రయత్నించండి." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "మారుపేరు పేరుతో సమానంగా ఉండకూడదు." @@ -691,18 +715,18 @@ msgid "Request token already authorized." msgstr "మీకు అధీకరణ లేదు." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -721,12 +745,13 @@ msgid "Database error inserting oauth_token_association." msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -774,6 +799,7 @@ msgstr "ఖాతా" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1023,105 +1049,139 @@ msgstr "నిర్ధారణ సంకేతం కనబడలేదు." msgid "User not found." msgstr "వాడుకరి దొరకలేదు." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "అటువంటి జోడింపు లేదు." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "పేరు" -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "పరిమాణం లేదు." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "తప్పుడు పరిమాణం." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "అవతారం" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "మీ వ్యక్తిగత అవతారాన్ని మీరు ఎక్కించవచ్చు. గరిష్ఠ ఫైలు పరిమాణం %s." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 #, fuzzy msgid "User without matching profile." msgstr "వాడుకరికి ప్రొఫైలు లేదు." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "అవతారపు అమరికలు" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "అసలు" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "మునుజూపు" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "తొలగించు" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "ఎగుమతించు" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "కత్తిరించు" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "ఏ దస్త్రమూ ఎక్కింపబడలేదు." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "మీ అవతారానికి గానూ ఈ చిత్రం నుండి ఒక చతురస్రపు ప్రదేశాన్ని ఎంచుకోండి" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "" -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "అవతారాన్ని తాజాకరించాం." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "అవతారపు తాజాకరణ విఫలమైంది." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "అవతారాన్ని తొలగించాం." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "మీరు ఇప్పటికే ఆ వాడుకరిని నిరోధించారు." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "వాడుకరిని నిరోధించు" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1136,7 +1196,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1145,7 +1205,7 @@ msgstr "కాదు" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "ఈ వాడుకరిని నిరోధించకు" @@ -1155,7 +1215,7 @@ msgstr "ఈ వాడుకరిని నిరోధించకు" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1164,90 +1224,111 @@ msgstr "అవును" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "ఈ వాడుకరిని నిరోధించు" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "నిరోధపు సమాచారాన్ని భద్రపరచడంలో విఫలమయ్యాం." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "అటువంటి గుంపు లేదు." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "%s నిరోధిత వాడుకరులు" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s మరియు మిత్రులు, పేజీ %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "ఈ గుంపు లోనికి చేరకుండా నిరోధించిన వాడుకరుల యొక్క జాబితా." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "వాడుకరిని గుంపు నుండి నిరోధించు" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "నిరోధాన్ని ఎత్తివేయి" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "ఈ వాడుకరిని నిరోధించు" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "%sకి టపాచెయ్యి" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "నిర్ధారణ సంకేతం లేదు." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "నిర్ధారణ సంకేతం కనబడలేదు." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "ఆ నిర్ధారణా సంకేతం మీది కాదు!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "గుర్తుతెలియని చిరునామా రకం %s." -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "ఆ చిరునామా ఇప్పటికే నిర్ధారితమైంది." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1255,7 +1336,7 @@ msgstr "ఆ చిరునామా ఇప్పటికే నిర్ధా #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1263,27 +1344,32 @@ msgstr "ఆ చిరునామా ఇప్పటికే నిర్ధా msgid "Couldn't update user." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." msgstr "ఈమెయిల్ నిర్ధారణని తొలగించలేకున్నాం." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "చిరునామాని నిర్ధారించు" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "\"%s\" అనే చిరునామా మీ ఖాతాకి నిర్ధారితమైంది." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "సంభాషణ" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "సందేశాలు" @@ -1390,11 +1476,13 @@ msgstr "ఈ గుంపును తొలగించకు" msgid "Delete this group" msgstr "ఈ గుంపుని తొలగించు" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1701,49 +1789,49 @@ msgstr "" msgid "Could not update application." msgstr "ఉపకరణాన్ని తాజాకరించలేకున్నాం." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "%s గుంపుని మార్చు" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "గుంపుని సృష్టించడానికి మీరు లోనికి ప్రవేశించాలి." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "గుంపుని మార్చడానికి మీరు నిర్వాహకులయి ఉండాలి." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "గుంపుని మార్చడానికి ఈ ఫారాన్ని ఉపయోగించండి." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "వివరణ చాలా పెద్దగా ఉంది (%d అక్షరాలు గరిష్ఠం)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "చాలా మారుపేర్లు! %d గరిష్ఠం." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "తప్పుడు మారుపేరు: \"%s\"" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "గుంపుని తాజాకరించలేకున్నాం." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "మారుపేర్లని సృష్టించలేకపోయాం." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "ఎంపికలు భద్రమయ్యాయి." @@ -1940,6 +2028,12 @@ msgstr "రద్దుచేయడానికి వేచివున్న msgid "That is the wrong email address." msgstr "ఆ ఈమెయిలు చిరునామా సరైనది కాదు." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "ఈమెయిల్ నిర్ధారణని తొలగించలేకున్నాం." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2120,21 +2214,25 @@ msgstr "ఈ సైటులో మీరు వాడుకరలకి పా msgid "User already has this role." msgstr "వాడుకరికి ఇప్పటికే ఈ పాత్ర ఉంది." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 #, fuzzy msgid "No profile specified." msgstr "గుంపు ఏమీ పేర్కొనలేదు." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 #, fuzzy msgid "No profile with that ID." msgstr "ఆ IDతో ఏ నోటీసూ కనబడలేదు." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "గుంపు ఏమీ పేర్కొనలేదు." @@ -2217,6 +2315,14 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "మీ గుంపుకి మీరు ఒక చిహ్నాన్ని ఎక్కించవచ్చు. ఆ ఫైలు యొక్క గరిష్ఠ పరిమాణం %s." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "ఎగుమతించు" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "కత్తిరించు" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "చిహ్నంగా ఉండాల్సిన చతురస్త్ర ప్రదేశాన్ని బొమ్మ నుండి ఎంచుకోండి." @@ -2357,15 +2463,18 @@ msgstr "" "[ఒక ఖాతాని నమోదుచేసుకుని](%%action.register%%) మీరే ఎందుకు [ఆ గుంపుని సృష్టించ](%%" "action.newgroup%%)కూడదు!" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "నిర్వాహకులు మాత్రమే గుంపు సభ్యులపై నిరోధాన్ని ఎత్తివేయగలరు." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "వాడుకరిని గుంపు నుండి నిరోధించలేదు." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "నిరోధాన్ని తొలగించడంలో పొరపాటు." @@ -2938,10 +3047,12 @@ msgstr "సంస్థ పేరు మరీ పెద్దగా ఉంద msgid "Could not create application." msgstr "ఉపకరణాన్ని సృష్టించలేకపోయాం." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "కొత్త గుంపు" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "కొత్త గుంపుని సృష్టిండానికి ఈ ఫారాన్ని ఉపయోగించండి." @@ -3642,8 +3753,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామచిహ్నాలు మరియు ఖాళీలు తప్ప" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "పూర్తి పేరు" @@ -3683,8 +3795,9 @@ msgid "Bio" msgstr "స్వపరిచయం" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4396,7 +4509,8 @@ msgstr "సంస్ధ" msgid "Description" msgstr "వివరణ" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "గణాంకాలు" @@ -4414,6 +4528,11 @@ msgstr "ఉపకరణ చర్యలు" msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "తొలగించు" + #: actions/showapplication.php:261 msgid "Application info" msgstr "ఉపకరణ సమాచారం" @@ -4502,77 +4621,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "మీకు నచ్చినవి పంచుకోడానికి ఇదొక మార్గం." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "%s గుంపు" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "%1$s గుంపు , %2$dవ పేజీ" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "గుంపు ప్రొఫైలు" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "గమనిక" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "మారుపేర్లు" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "గుంపు చర్యలు" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s కొరకు స్పందనల ఫీడు (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s కొరకు స్పందనల ఫీడు (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "%s కొరకు స్పందనల ఫీడు (ఆటమ్)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "%s గుంపు" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "సభ్యులు" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(ఏమీలేదు)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "అందరు సభ్యులూ" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "సృష్టితం" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "సభ్యులు" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4588,7 +4736,10 @@ msgstr "" "చాల వాటిలో భాగస్తులవ్వడానికి [ఇప్పుడే చేరండి](%%%%action.register%%%%)! ([మరింత చదవండి](%%%%" "doc.help%%%%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4603,24 +4754,31 @@ msgstr "" "చాల వాటిలో భాగస్తులవ్వడానికి [ఇప్పుడే చేరండి](%%%%action.register%%%%)! ([మరింత చదవండి](%%%%" "doc.help%%%%))" -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "నిర్వాహకులు" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "అటువంటి సందేశం లేదు." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "పంపినవారు మరియు అందుకున్నవారు మాత్రమే ఈ సందేశాన్ని చదవవచ్చు." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, fuzzy, php-format msgid "Message to %1$s on %2$s" msgstr "%2$sలో %1$sకి స్పందనలు!" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, fuzzy, php-format msgid "Message from %1$s on %2$s" msgstr "%2$sలో %1$sకి స్పందనలు!" @@ -5066,13 +5224,15 @@ msgstr "" msgid "Save snapshot settings" msgstr "సైటు అమరికలను భద్రపరచు" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 #, fuzzy msgid "You are not subscribed to that profile." msgstr "మీరు ఎవరికీ చందాచేరలేదు." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "కొత్త చందాని చేర్చలేకపోయాం." @@ -5853,12 +6013,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "@%2$s, %1$sకి స్వాగతం!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "" #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -6992,7 +7152,8 @@ msgstr "ఆటమ్" msgid "FOAF" msgstr "" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "ఫీడులు" @@ -7151,39 +7312,57 @@ msgstr "" msgid "Unsupported image file format." msgstr "" -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, fuzzy, php-format msgid "That file is too big. The maximum file size is %s." msgstr "ఇది చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం 140 అక్షరాలు." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "పాక్షిక ఎగుమతి." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "" -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "బొమ్మ కాదు లేదా పాడైపోయిన ఫైలు." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "అటువంటి ఫైలు లేదు." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "తెలియని ఫైలు రకం" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "మెబై" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "మెబై" +msgstr[1] "మెబై" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "కిబై" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "కిబై" +msgstr[1] "కిబై" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" #: lib/jabber.php:387 #, php-format @@ -8067,6 +8246,13 @@ msgstr "నిరోధాన్ని తొలగించడంలో పొ msgid "Top posters" msgstr "" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "నిరోధాన్ని ఎత్తివేయి" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "" @@ -8248,3 +8434,9 @@ msgstr "గుంపు ఏమీ పేర్కొనలేదు." #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "వివరణ చాలా పెద్దగా ఉంది (%d అక్షరాలు గరిష్ఠం)." + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "చాలా మారుపేర్లు! %d గరిష్ఠం." diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index b96a6da1bc..61def584b9 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:09:40+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:49+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -118,6 +118,7 @@ msgstr "Böyle bir kullanıcı yok." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -130,7 +131,7 @@ msgstr "Böyle bir kullanıcı yok." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -313,11 +314,12 @@ msgstr "Kullanıcı güncellenemedi." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -333,7 +335,7 @@ msgstr "Profil kaydedilemedi." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -505,9 +507,11 @@ msgstr "Kaynak kullanıcı belirlenemedi." msgid "Could not find target user." msgstr "Hedef kullanıcı bulunamadı." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" @@ -515,35 +519,43 @@ msgstr "" "kullanılamaz. " #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Takma ad kullanımda. Başka bir tane deneyin." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Geçersiz bir takma ad." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Başlangıç sayfası adresi geçerli bir URL değil." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -552,19 +564,22 @@ msgstr "Tam isim çok uzun (azm: 255 karakter)." #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." msgstr[0] "Yer bilgisi çok uzun (azm: %d karakter)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -572,7 +587,12 @@ msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, fuzzy, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -587,15 +607,19 @@ msgstr "Geçersiz büyüklük." #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Diğerisim \"%s\" kullanımda. Başka bir tane deneyin." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "Diğerisim, kullanıcı adı ile aynı olamaz." @@ -701,18 +725,18 @@ msgid "Request token already authorized." msgstr "Takip talebine izin verildi" #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -731,12 +755,13 @@ msgid "Database error inserting oauth_token_association." msgstr "OAuth uygulama kullanıcısı eklerken veritabanı hatası." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -793,6 +818,7 @@ msgstr "Hesap" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1043,106 +1069,140 @@ msgstr "UPA metodu yapım aşamasında." msgid "User not found." msgstr "Onay kodu bulunamadı." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "Böyle bir durum mesajı yok." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Takma ad yok" -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Boyut yok." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Geçersiz büyüklük." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" "Kişisel kullanıcı resminizi yükleyebilirsiniz. Maksimum dosya boyutu %s'dir." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 #, fuzzy msgid "User without matching profile." msgstr "Kullanıcının profili yok." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Profil ayarları" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Orijinal" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Önizleme" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Sil" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Yükle" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Kırp" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "Hiçbir dosya yüklenmedi." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "Resimden kullanıcı resminiz olacak bir kare alanı seçin" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "" -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Avatar güncellendi." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Avatar güncellemede hata." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "Kullanıcı resmi silindi." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "Jabber ID başka bir kullanıcıya ait." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Kullanıcıyı engelle" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1159,7 +1219,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1168,7 +1228,7 @@ msgstr "Hayır" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Bu kullanıcıyı engelleme" @@ -1178,7 +1238,7 @@ msgstr "Bu kullanıcıyı engelleme" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1187,90 +1247,111 @@ msgstr "Evet" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Bu kullanıcıyı engelle" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "Engelleme bilgisinin kaydedilmesi başarısızlığa uğradı." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "Böyle bir kullanıcı yok." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "%s engellenmiş profil" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, fuzzy, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%s ve arkadaşları" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "Bu gruba katılması engellenmiş kullanıcıların bir listesi." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Kullanıcının gruba üye olma engellemesini kaldır" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Engellemeyi Kaldır" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Bu kullanıcının engellemesini kaldır" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, fuzzy, php-format msgid "Post to %s" msgstr "%s için cevaplar" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Onay kodu yok." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Onay kodu bulunamadı." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "O onay kodu sizin için değil!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "Tanınmayan adres türü %s." -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "O adres daha önce onaylanmış." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1278,7 +1359,7 @@ msgstr "O adres daha önce onaylanmış." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1286,27 +1367,32 @@ msgstr "O adres daha önce onaylanmış." msgid "Couldn't update user." msgstr "Kullanıcı güncellenemedi." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." msgstr "Eposta onayı silinemedi." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Onayla" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "\"%s\" adresi hesabınız için onaylandı." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Konuşma" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Durum mesajları" @@ -1418,11 +1504,13 @@ msgstr "Bu durum mesajını silme" msgid "Delete this group" msgstr "Bu kullanıcıyı sil" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1726,49 +1814,49 @@ msgstr "" msgid "Could not update application." msgstr "Uygulama güncellenemedi." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "%s grubunu düzenle" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Bir grup oluşturmak için giriş yapmış olmanız gerekir." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "Bir grubu düzenlemek için bir yönetici olmalısınız." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Grubu düzenlemek için bu biçimi kullan." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Yer bilgisi çok uzun (azm: %d karakter)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Çok fazla diğerisim! En fazla %d." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "%s Geçersiz başlangıç sayfası" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Grup güncellenemedi." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Kullanıcı güncellenemedi." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Seçenekler kaydedildi." @@ -1968,6 +2056,12 @@ msgstr "İptal etmek için beklenen onay yok." msgid "That is the wrong email address." msgstr "Bu yanlış e-posta adresi." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Eposta onayı silinemedi." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2150,19 +2244,23 @@ msgstr "Bize o profili yollamadınız" msgid "User already has this role." msgstr "Kullanıcının profili yok." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "Hiçbir profil belirtilmedi." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "" -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "Hiçbir grup belirtilmedi." @@ -2245,6 +2343,14 @@ msgid "" msgstr "" "Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Yükle" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Kırp" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Resimden logo olacak bir kare alanı seçin." @@ -2381,15 +2487,18 @@ msgid "" "action.newgroup%%) yourself!" msgstr "" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "" -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "Kullanıcı gruptan engellenmedi." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Engellemeyi kaldırırken hata." @@ -2952,10 +3061,12 @@ msgstr "Organizasyon çok uzun (maksimum 255 karakter)." msgid "Could not create application." msgstr "Eposta onayı silinemedi." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Yeni grup" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" @@ -3657,8 +3768,9 @@ msgstr "" "verilmez" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Tam İsim" @@ -3699,8 +3811,9 @@ msgid "Bio" msgstr "Hakkında" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4407,7 +4520,8 @@ msgstr "Organizasyon" msgid "Description" msgstr "Tanım" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "İstatistikler" @@ -4425,6 +4539,11 @@ msgstr "" msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Sil" + #: actions/showapplication.php:261 msgid "Application info" msgstr "" @@ -4509,77 +4628,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "" -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, fuzzy, php-format msgid "%1$s group, page %2$d" msgstr "Bütün abonelikler" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Kullanıcının profili yok." -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "Bağlantı" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Not" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "Diğerisimler" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s için durum RSS beslemesi" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s için durum RSS beslemesi" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "%s için durum RSS beslemesi" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "%s için durum RSS beslemesi" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Üyeler" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Yok)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Tüm üyeler" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Oluşturuldu" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Üyeler" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4589,7 +4737,10 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4598,24 +4749,31 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Yöneticiler" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "Böyle bir mesaj yok." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "" -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "" @@ -5061,13 +5219,15 @@ msgstr "" msgid "Save snapshot settings" msgstr "Ayarlar" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 #, fuzzy msgid "You are not subscribed to that profile." msgstr "Bize o profili yollamadınız" +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "Yeni abonelik eklenemedi." @@ -5858,12 +6018,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "" #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -6998,7 +7158,8 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -7162,41 +7323,56 @@ msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" msgid "Unsupported image file format." msgstr "Desteklenmeyen görüntü dosyası biçemi." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, fuzzy, php-format msgid "That file is too big. The maximum file size is %s." msgstr "" "Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Kısmi yükleme." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Dosya yüklemede sistem hatası." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "Bu bir resim dosyası değil ya da dosyada hata var" -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 #, fuzzy msgid "Lost our file." msgstr "Böyle bir durum mesajı yok." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "MB" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "MB" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "kB" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "kB" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" #: lib/jabber.php:387 #, php-format @@ -8014,6 +8190,13 @@ msgstr "Uzaktaki profili güncellemede hata oluştu" msgid "Top posters" msgstr "" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Engellemeyi Kaldır" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "" @@ -8195,3 +8378,9 @@ msgstr "Yeni durum mesajı" #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "Yer bilgisi çok uzun (azm: %d karakter)." + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "Çok fazla diğerisim! En fazla %d." diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index d707e13ac1..4bd646cf35 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -12,18 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:09:42+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:50+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -121,6 +121,7 @@ msgstr "Немає такої сторінки." #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -133,7 +134,7 @@ msgstr "Немає такої сторінки." #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -310,11 +311,12 @@ msgstr "Не вдалося оновити користувача." #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -329,7 +331,7 @@ msgstr "Не вдалося зберегти профіль." #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, php-format @@ -511,9 +513,11 @@ msgstr "Не вдалось встановити джерело користув msgid "Could not find target user." msgstr "Не вдалося знайти цільового користувача." +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" @@ -521,35 +525,43 @@ msgstr "" "інтервалів." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Це ім’я вже використовується. Спробуйте інше." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Це недійсне ім’я користувача." #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Веб-сторінка має недійсну URL-адресу." #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 msgid "Full name is too long (maximum 255 characters)." msgstr "Повне ім’я надто довге (не більше 255 символів)." @@ -557,10 +569,11 @@ msgstr "Повне ім’я надто довге (не більше 255 сим #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -569,16 +582,23 @@ msgstr[1] "Опис надто довгий (максимум — %d знакі msgstr[2] "Опис надто довгий (максимум — %d знаків)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 msgid "Location is too long (maximum 255 characters)." msgstr "Розташування надто довге (не більше 255 символів)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -595,15 +615,19 @@ msgstr "Помилкове додаткове ім’я: «%s»." #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Додаткове ім’я «%s» вже використовується. Спробуйте інше." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "Додаткове ім’я не може бути таким самим що й основне." @@ -706,18 +730,18 @@ msgid "Request token already authorized." msgstr "Токен запиту вже авторизовано." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -736,12 +760,13 @@ msgid "Database error inserting oauth_token_association." msgstr "Помилка бази даних при додаванні параметру oauth_token_association." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -796,6 +821,7 @@ msgstr "Акаунт" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1052,104 +1078,138 @@ msgstr "API метод наразі знаходиться у розробці." msgid "User not found." msgstr "Сторінку не знайдено." +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "Такого вкладення немає." -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "Немає імені." -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "Немає розміру." -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "Недійсний розмір." +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Аватара" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Ви можете завантажити аватару. Максимальний розмір %s." -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "Користувач без відповідного профілю." -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "Налаштування аватари" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "Оригінал" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "Перегляд" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "Видалити" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "Завантажити" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "Втяти" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "Жодного файлу не завантажено." -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "Оберіть квадратну ділянку зображення, яка й буде вашою автарою." -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "Дані вашого файлу загублено." -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "Аватару оновлено." -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "Оновлення аватари невдале." -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "Аватару видалено." -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "Цього користувача вже заблоковано." -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "Блокувати користувача" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1165,7 +1225,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1174,7 +1234,7 @@ msgstr "Ні" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "Не блокувати цього користувача" @@ -1184,7 +1244,7 @@ msgstr "Не блокувати цього користувача" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1193,90 +1253,111 @@ msgstr "Так" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "Блокувати користувача" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "Збереження інформації про блокування завершилось невдачею." +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "Такої спільноти не існує." -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "Заблоковані профілі %s" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "Заблоковані профілі %1$s, сторінка %2$d" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "Список користувачів, котрих заблоковано в цій спільноті." -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "Розблокувати користувача" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "Розблокувати" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "Розблокувати цього користувача" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "Опублікувати в %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "Немає коду підтвердження." +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Код підтвердження не знайдено." -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "Цей код підтвердження не для вас!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "Невизначений тип адреси %s." -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "Цю адресу вже підтверджено." +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1284,7 +1365,7 @@ msgstr "Цю адресу вже підтверджено." #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1292,27 +1373,32 @@ msgstr "Цю адресу вже підтверджено." msgid "Couldn't update user." msgstr "Не вдалося оновити користувача." -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." -msgstr "Не вдалося видалити підтвердження поштової адреси." +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." +msgstr "Не вдалося видалити підтвердження ІМ." -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "Підтвердити адресу" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Адресу «%s» підтверджено для вашого акаунту." -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "Розмова" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Дописи" @@ -1418,11 +1504,13 @@ msgstr "Не видаляти цю спільноту" msgid "Delete this group" msgstr "Видалити спільноту" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1720,51 +1808,51 @@ msgstr "URL-адреса для зворотнього дзвінка не є д msgid "Could not update application." msgstr "Не вдалося оновити додаток." -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "Змінити властивості спільноти %s" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Ви маєте спочатку увійти, аби мати змогу започаткувати спільноту." -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "" "Ви маєте бути наділені правами адміністратора, аби відредагувати властивості " "даної спільноти." -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "Скористайтесь цією формою, щоб відредагувати властивості спільноти." -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "Опис надто довгий (%d знаків максимум)." - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "Забагато додаткових імен! Максимум становить %d." - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Помилкове додаткове ім’я: «%s»" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "Не вдалося оновити спільноту." +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Неможна призначити додаткові імена." -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "Опції збережено." @@ -1956,6 +2044,12 @@ msgstr "Не очікується підтвердження для скасув msgid "That is the wrong email address." msgstr "Це помилкова адреса електронної пошти." +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Не вдалося видалити підтвердження поштової адреси." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2134,19 +2228,23 @@ msgstr "Ви не можете надавати користувачеві жо msgid "User already has this role." msgstr "Користувач вже має цю роль." +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "Не визначено жодного профілю." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "Не визначено профілю з таким ID." -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "Спільноту не визначено." @@ -2234,6 +2332,14 @@ msgstr "" "Ви маєте можливість завантажити логотип для вашої спільноти. Максимальний " "розмір файлу становить %s." +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "Завантажити" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "Втяти" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Оберіть квадратну ділянку зображення, яка й буде логотипом спільноти." @@ -2377,15 +2483,18 @@ msgstr "" "Чому б не [зареєструватись](%%action.register%%) і не [започаткувати](%%" "action.newgroup%%) свою власну спільноту!" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "Лише адміністратори можуть розблокувати учасників спільноти." -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "Користувача не блоковано." -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "Помилка при розблокуванні." @@ -2985,10 +3094,12 @@ msgstr "Назва організації надто довга (не більш msgid "Could not create application." msgstr "Не вдалося створити додаток." +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "Нова спільнота" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Скористайтесь цією формою для створення нової спільноти." @@ -3678,8 +3789,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 рядкових літер і цифр, ніякої пунктуації або інтервалів." #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "Повне ім’я" @@ -3719,8 +3831,9 @@ msgid "Bio" msgstr "Про себе" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4441,7 +4554,8 @@ msgstr "Організація" msgid "Description" msgstr "Опис" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "Статистика" @@ -4459,6 +4573,11 @@ msgstr "Можливості додатку" msgid "Reset key & secret" msgstr "Призначити новий ключ і таємне слово" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "Видалити" + #: actions/showapplication.php:261 msgid "Application info" msgstr "Інфо додатку" @@ -4552,77 +4671,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Це спосіб поділитись з усіма тим, що вам подобається." -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "Спільнота %s" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "Спільнота %1$s, сторінка %2$d" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "Профіль спільноти" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "Зауваження" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "Додаткові імена" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "Дії спільноти" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Стрічка дописів спільноти %s (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Стрічка дописів спільноти %s (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Стрічка дописів спільноти %s (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "FOAF спільноти %s" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "Учасники" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Пусто)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "Всі учасники" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "Створено" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "Учасники" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4638,7 +4786,10 @@ msgstr "" "register%%%%) зараз і долучіться до спілкування! ([Дізнатися більше](%%%%doc." "help%%%%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4651,24 +4802,31 @@ msgstr "" "програмному забезпеченні [StatusNet](http://status.net/). Учасники цієї " "спільноти роблять короткі дописи про своє життя та інтереси. " -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "Адміни" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "Немає такого повідомлення." -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "Лише відправник та отримувач мають можливість читати це повідомлення." -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "Повідомлення до %1$s на %2$s" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "Повідомлення від %1$s на %2$s" @@ -5116,12 +5274,14 @@ msgstr "Снепшоти надсилатимуться на цю URL-адрес msgid "Save snapshot settings" msgstr "Зберегти налаштування знімку" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "Ви не підписані до цього профілю." +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "Не вдалося зберегти підписку." @@ -5931,12 +6091,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Вітаємо на %1$s, @%2$s!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "Користувача для однокористувацького режиму не визначено." #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "Код для однокористувацького режиму називається, коли не ввімкнуто." @@ -7102,7 +7262,8 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "Веб-стрічки" @@ -7263,39 +7424,60 @@ msgstr "Ця сторінка не доступна для того типу м msgid "Unsupported image file format." msgstr "Формат зображення не підтримується." -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "Цей файл завеликий. Максимальний розмір %s." -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "Часткове завантаження." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Система відповіла помилкою при завантаженні цього файла." -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "Це не зображення, або файл зіпсовано." -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "Файл втрачено." -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "Тип файлу не підтримується" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "Мб" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "Мб" +msgstr[1] "Мб" +msgstr[2] "Мб" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "кб" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "кб" +msgstr[1] "кб" +msgstr[2] "кб" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/jabber.php:387 #, php-format @@ -8195,6 +8377,13 @@ msgstr "Помилка при відкритті архіву з темою." msgid "Top posters" msgstr "Топ-дописувачі" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "Розблокувати" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "Витягти з пісочниці" @@ -8388,3 +8577,9 @@ msgstr "" #, php-format msgid "%d entries in backup." msgstr "У резервному файлі збережено %d дописів." + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "Опис надто довгий (%d знаків максимум)." + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "Забагато додаткових імен! Максимум становить %d." diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index f95400972d..f20bc803d5 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -14,18 +14,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-28 23:09:44+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:54+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r75629); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2010-10-28 00:13:15+0000\n" +"X-POT-Import-Date: 2010-10-30 09:48:40+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -121,6 +121,7 @@ msgstr "没有这个页面。" #. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:80 actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 @@ -133,7 +134,7 @@ msgstr "没有这个页面。" #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 -#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:75 +#: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 #: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 #: actions/otp.php:76 actions/remotesubscribe.php:145 @@ -308,11 +309,12 @@ msgstr "无法更新用户。" #. TRANS: Client error displayed a user has no profile updating profile colours. #. TRANS: Client error displayed if a user profile could not be found updating a profile image. #. TRANS: Client error displayed when requesting user information for a user without a profile. +#. TRANS: Client error displayed trying to get an avatar for a user without a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 #: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." @@ -327,7 +329,7 @@ msgstr "无法保存个人信息。" #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:259 +#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 #: actions/designadminpanel.php:125 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #, fuzzy, php-format @@ -497,43 +499,53 @@ msgstr "无法确定源用户。" msgid "Could not find target user." msgstr "无法找到目标用户。" +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:165 actions/editgroup.php:186 -#: actions/newgroup.php:126 actions/profilesettings.php:243 +#: actions/apigroupcreate.php:165 actions/editgroup.php:191 +#: actions/newgroup.php:127 actions/profilesettings.php:243 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "昵称只能使用小写字母和数字且不能使用空格。" #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:175 actions/editgroup.php:190 -#: actions/newgroup.php:130 actions/profilesettings.php:277 +#: actions/apigroupcreate.php:175 actions/editgroup.php:196 +#: actions/newgroup.php:132 actions/profilesettings.php:277 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "昵称已被使用,换一个吧。" #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 -#: actions/newgroup.php:133 actions/profilesettings.php:247 +#: actions/apigroupcreate.php:183 actions/editgroup.php:200 +#: actions/newgroup.php:136 actions/profilesettings.php:247 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "不是有效的昵称。" #. TRANS: Client error in form for group creation. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #: actions/apigroupcreate.php:200 actions/editapplication.php:233 -#: actions/editgroup.php:199 actions/newapplication.php:211 -#: actions/newgroup.php:139 actions/profilesettings.php:252 +#: actions/editgroup.php:207 actions/newapplication.php:211 +#: actions/newgroup.php:143 actions/profilesettings.php:252 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "主页的URL不正确。" #. TRANS: Client error in form for group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:210 actions/editgroup.php:202 -#: actions/newgroup.php:142 actions/profilesettings.php:256 +#: actions/apigroupcreate.php:210 actions/editgroup.php:211 +#: actions/newgroup.php:147 actions/profilesettings.php:256 #: actions/register.php:227 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -542,19 +554,22 @@ msgstr "全名过长(不能超过 255 个字符)。" #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: Group edit form validation error. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #: actions/apigroupcreate.php:220 actions/editapplication.php:201 -#: actions/newapplication.php:178 +#: actions/editgroup.php:216 actions/newapplication.php:178 #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." msgstr[0] "描述过长(不能超过%d 个字符)。" #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:234 actions/editgroup.php:208 -#: actions/newgroup.php:153 actions/profilesettings.php:269 +#: actions/apigroupcreate.php:234 actions/editgroup.php:223 +#: actions/newgroup.php:159 actions/profilesettings.php:269 #: actions/register.php:236 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -562,7 +577,12 @@ msgstr "位置过长(不能超过255个字符)。" #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:255 actions/newgroup.php:166 +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#: actions/apigroupcreate.php:255 actions/editgroup.php:236 +#: actions/newgroup.php:172 #, fuzzy, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -577,15 +597,19 @@ msgstr "无效的别名:“%s”。" #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. -#: actions/apigroupcreate.php:291 actions/editgroup.php:232 -#: actions/newgroup.php:181 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:291 actions/editgroup.php:253 +#: actions/newgroup.php:189 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "%s这个别名已被使用,换一个吧。" #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. -#: actions/apigroupcreate.php:305 actions/editgroup.php:238 -#: actions/newgroup.php:187 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/apigroupcreate.php:305 actions/editgroup.php:260 +#: actions/newgroup.php:196 msgid "Alias can't be the same as nickname." msgstr "别名不能和昵称相同。" @@ -691,18 +715,18 @@ msgid "Request token already authorized." msgstr "你没有被授权。" #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:270 +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 #: actions/deletenotice.php:172 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/groupunblock.php:65 actions/imsettings.php:230 #: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 #: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 #: actions/othersettings.php:145 actions/passwordsettings.php:138 #: actions/profilesettings.php:221 actions/recoverpassword.php:350 #: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 #: actions/subscribe.php:86 actions/tagother.php:166 #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 @@ -721,12 +745,13 @@ msgid "Database error inserting oauth_token_association." msgstr "插入 OAuth 应用用户时数据库出错。" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:283 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 #: actions/designadminpanel.php:104 actions/editapplication.php:144 #: actions/emailsettings.php:290 actions/grouplogo.php:322 #: actions/imsettings.php:245 actions/newapplication.php:125 @@ -779,6 +804,7 @@ msgstr "帐号" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group nickname (dt). Text hidden by default. #: actions/apioauthauthorize.php:459 actions/login.php:252 #: actions/profilesettings.php:110 actions/register.php:433 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -1027,104 +1053,138 @@ msgstr "API 方法尚未实现。" msgid "User not found." msgstr "API方法没有找到。" +#. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 msgid "No such attachment." msgstr "没有这个附件。" -#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." msgstr "没有昵称。" -#: actions/avatarbynickname.php:64 +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +#: actions/avatarbynickname.php:66 msgid "No size." msgstr "没有大小。" -#: actions/avatarbynickname.php:69 +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +#: actions/avatarbynickname.php:72 msgid "Invalid size." msgstr "大小不正确。" +#. TRANS: Title for avatar upload page. +#. TRANS: Label for group avatar (dt). Text hidden by default. #. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: actions/avatarsettings.php:66 actions/showgroup.php:229 #: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "头像" +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "你可以上传你的个人头像。文件大小限制在%s以下。" -#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. +#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 msgid "User without matching profile." msgstr "用户没有相应个人信息。" -#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 #: actions/grouplogo.php:254 msgid "Avatar settings" msgstr "头像设置" -#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" msgstr "原始" -#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" msgstr "预览" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deletegroupform.php:121 lib/deleteuserform.php:66 -#: lib/noticelist.php:667 +#. TRANS: Button on avatar upload page to delete current avatar. +#: actions/avatarsettings.php:155 +#, fuzzy +msgctxt "BUTTON" msgid "Delete" msgstr "删除" -#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +#. TRANS: Button on avatar upload page to upload an avatar. +#: actions/avatarsettings.php:173 +#, fuzzy +msgctxt "BUTTON" msgid "Upload" msgstr "上传" -#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +#: actions/avatarsettings.php:243 +#, fuzzy +msgctxt "BUTTON" msgid "Crop" msgstr "剪裁" -#: actions/avatarsettings.php:307 +#. TRANS: Validation error on avatar upload form when no file was uploaded. +#: actions/avatarsettings.php:318 msgid "No file uploaded." msgstr "没有文件被上传。" -#: actions/avatarsettings.php:334 +#. TRANS: Avatar upload form unstruction after uploading a file. +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar" msgstr "请选择一块方形区域作为你的头像" -#: actions/avatarsettings.php:349 actions/grouplogo.php:380 +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#: actions/avatarsettings.php:361 actions/grouplogo.php:380 msgid "Lost our file data." msgstr "文件数据丢失" -#: actions/avatarsettings.php:372 +#: actions/avatarsettings.php:384 msgid "Avatar updated." msgstr "头像已更新。" -#: actions/avatarsettings.php:375 +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +#: actions/avatarsettings.php:388 msgid "Failed updating avatar." msgstr "更新头像失败。" -#: actions/avatarsettings.php:399 +#. TRANS: Success message for deleting a user avatar. +#: actions/avatarsettings.php:412 msgid "Avatar deleted." msgstr "头像已删除。" -#: actions/block.php:69 +#. TRANS: Client error displayed when blocking a user that has already been blocked. +#: actions/block.php:68 msgid "You already blocked that user." msgstr "你已经屏蔽该用户。" -#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" msgstr "屏蔽用户。" -#: actions/block.php:138 +#. TRANS: Explanation of consequences when blocking a user on the block user page. +#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1139,7 +1199,7 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/block.php:154 actions/deleteapplication.php:154 #: actions/deletegroup.php:220 actions/deletenotice.php:150 #: actions/deleteuser.php:152 actions/groupblock.php:178 msgctxt "BUTTON" @@ -1148,7 +1208,7 @@ msgstr "否" #. TRANS: Submit button title for 'No' when blocking a user. #. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:157 actions/deleteuser.php:156 +#: actions/block.php:158 actions/deleteuser.php:156 msgid "Do not block this user" msgstr "不要屏蔽这个用户" @@ -1158,7 +1218,7 @@ msgstr "不要屏蔽这个用户" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/block.php:161 actions/deleteapplication.php:161 #: actions/deletegroup.php:227 actions/deletenotice.php:157 #: actions/deleteuser.php:159 actions/groupblock.php:185 msgctxt "BUTTON" @@ -1167,90 +1227,111 @@ msgstr "是" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:79 +#: actions/block.php:165 lib/blockform.php:79 msgid "Block this user" msgstr "屏蔽这个用户" -#: actions/block.php:187 +#. TRANS: Server error displayed when blocking a user fails. +#: actions/block.php:189 msgid "Failed to save block information." msgstr "保存屏蔽信息失败。" +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. #. TRANS: Client error when trying to delete a non-local group. #. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 #: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 #: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 #: actions/groupmembers.php:83 actions/groupmembers.php:90 #: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/groupunblock.php:88 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: actions/showgroup.php:139 actions/showgroup.php:148 lib/command.php:168 #: lib/command.php:380 msgid "No such group." msgstr "没有这个组。" -#: actions/blockedfromgroup.php:97 +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#: actions/blockedfromgroup.php:101 #, php-format msgid "%s blocked profiles" msgstr "%s屏蔽的用户" -#: actions/blockedfromgroup.php:100 +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#: actions/blockedfromgroup.php:106 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s屏蔽的用户,第%2$d页" -#: actions/blockedfromgroup.php:115 +#. TRANS: Instructions for list of users blocked from a group. +#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "被屏蔽加入此小组的用户列表。" -#: actions/blockedfromgroup.php:288 +#. TRANS: Form legend for unblocking a user from a group. +#: actions/blockedfromgroup.php:291 msgid "Unblock user from group" msgstr "取消小组对用户的屏蔽。" -#. TRANS: Title for the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +#. TRANS: Button text for unblocking a user from a group. +#: actions/blockedfromgroup.php:323 +#, fuzzy +msgctxt "BUTTON" msgid "Unblock" msgstr "取消屏蔽" +#. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 msgid "Unblock this user" msgstr "取消屏蔽这个用户。" #. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. #: actions/bookmarklet.php:51 #, php-format msgid "Post to %s" msgstr "发布到 %s" -#: actions/confirmaddress.php:75 +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "没有确认码" +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "未找到确认码。" -#: actions/confirmaddress.php:85 +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "此确认码不是你的!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 +#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:92 #, php-format msgid "Unrecognized address type %s." msgstr "不可识别的地址类型%s。" -#. TRANS: Client error for an already confirmed email/jabbel/sms address. -#: actions/confirmaddress.php:96 +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: actions/confirmaddress.php:97 msgid "That address has already been confirmed." msgstr "此地址已被确认过了。" +#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1258,7 +1339,7 @@ msgstr "此地址已被确认过了。" #. TRANS: Server error thrown when user profile settings could not be updated. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/confirmaddress.php:118 actions/emailsettings.php:331 #: actions/emailsettings.php:477 actions/imsettings.php:283 #: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:326 actions/smssettings.php:308 @@ -1266,27 +1347,32 @@ msgstr "此地址已被确认过了。" msgid "Couldn't update user." msgstr "无法更新用户。" -#. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:437 -#: actions/smssettings.php:422 -msgid "Couldn't delete email confirmation." -msgstr "无法删除电子邮件确认。" +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +#: actions/confirmaddress.php:132 +#, fuzzy +msgid "Could not delete address confirmation." +msgstr "无法删除 IM 确认。" -#: actions/confirmaddress.php:146 +#. TRANS: Title for the contact address confirmation action. +#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "确认地址" -#: actions/confirmaddress.php:161 +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "你账户的地址 \"%s\" 已被确认。" -#: actions/conversation.php:99 +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:96 msgid "Conversation" msgstr "对话" -#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#. TRANS: Header on conversation page. Hidden by default (h2). +#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "消息" @@ -1395,11 +1481,13 @@ msgstr "不要删除这个消息" msgid "Delete this group" msgstr "删除这个用户" +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:50 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 @@ -1698,49 +1786,49 @@ msgstr "调回地址(Callback URL)无效。" msgid "Could not update application." msgstr "无法更新应用。" -#: actions/editgroup.php:56 +#. TRANS: Title for form to edit a group. %s is a group nickname. +#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "编辑 %s 小组" +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "你必须登录才能创建小组。" -#: actions/editgroup.php:107 actions/editgroup.php:172 +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#: actions/editgroup.php:110 actions/editgroup.php:176 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." msgstr "管理员才可以编辑小组。" -#: actions/editgroup.php:158 +#. TRANS: Form instructions for group edit form. +#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "通过这个表单来编辑小组" -#: actions/editgroup.php:205 -#, php-format -msgid "Description is too long (max %d chars)." -msgstr "描述过长(不能超过%d 个字符)。" - -#: actions/editgroup.php:219 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "太多别名了!最多%d 个。" - -#: actions/editgroup.php:228 actions/newgroup.php:177 +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#: actions/editgroup.php:248 actions/newgroup.php:184 #, php-format msgid "Invalid alias: \"%s\"" msgstr "无效的别名:“%s”。" -#: actions/editgroup.php:258 +#. TRANS: Server error displayed when editing a group fails. +#: actions/editgroup.php:281 msgid "Could not update group." msgstr "无法更新小组" +#. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:513 +#: actions/editgroup.php:288 classes/User_group.php:513 msgid "Could not create aliases." msgstr "无法创建别名。" -#: actions/editgroup.php:280 +#. TRANS: Group edit form success message. +#: actions/editgroup.php:305 msgid "Options saved." msgstr "选项已保存。" @@ -1931,6 +2019,12 @@ msgstr "没有可以取消的确认。" msgid "That is the wrong email address." msgstr "这是错误的电子邮件地址。" +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/emailsettings.php:437 actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "无法删除电子邮件确认。" + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -2105,19 +2199,23 @@ msgstr "你不能在这个网站授予用户权限。" msgid "User already has this role." msgstr "用户已有此权限。" +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. #: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 +#: actions/makeadmin.php:71 actions/subedit.php:49 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "没有指定的用户。" -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#: actions/groupblock.php:76 actions/groupunblock.php:77 +#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "此 ID 没有用户。" -#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/groupblock.php:81 actions/groupunblock.php:82 #: actions/makeadmin.php:81 msgid "No group specified." msgstr "没有指定小组。" @@ -2199,6 +2297,14 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "你可以给你的小组上传一个 logo。文件最大限制为%s。" +#: actions/grouplogo.php:236 +msgid "Upload" +msgstr "上传" + +#: actions/grouplogo.php:289 +msgid "Crop" +msgstr "剪裁" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "请选择一块方形区域作为 logo。" @@ -2338,15 +2444,18 @@ msgstr "" "现在就 [注册一个帐号](%%action.register%%) 并 [创建该小组](%%action.newgroup%" "%) !" -#: actions/groupunblock.php:91 +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "只有管理员可以取消屏蔽小组成员。" -#: actions/groupunblock.php:95 +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +#: actions/groupunblock.php:99 msgid "User is not blocked from group." msgstr "用户未被小组屏蔽。" -#: actions/groupunblock.php:128 actions/unblock.php:86 +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#: actions/groupunblock.php:131 actions/unblock.php:86 msgid "Error removing the block." msgstr "取消屏蔽时出错。" @@ -2916,10 +3025,12 @@ msgstr "组织名称过长(不能超过255个字符)。" msgid "Could not create application." msgstr "无法创建应用。" +#. TRANS: Title for form to create a group. #: actions/newgroup.php:53 msgid "New group" msgstr "新小组" +#. TRANS: Form instructions for group create form. #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "通过此表单创建小组。" @@ -3617,8 +3728,9 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1 到 64 个小写字母或数字,不包含标点或空格" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for full group name (dt). Text hidden by default. #: actions/profilesettings.php:117 actions/register.php:457 -#: actions/showgroup.php:256 actions/tagother.php:104 +#: actions/showgroup.php:257 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 msgid "Full name" msgstr "全名" @@ -3657,8 +3769,9 @@ msgid "Bio" msgstr "自述" #. TRANS: Field label in form for profile settings. +#. TRANS: Label for group location (dt). Text hidden by default. #: actions/profilesettings.php:149 actions/register.php:485 -#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/showgroup.php:267 actions/tagother.php:112 #: actions/userauthorization.php:166 lib/groupeditform.php:177 #: lib/userprofile.php:165 msgid "Location" @@ -4351,7 +4464,8 @@ msgstr "组织名称必填。" msgid "Description" msgstr "描述" -#: actions/showapplication.php:192 actions/showgroup.php:442 +#. TRANS: Header for group statistics on a group page (h2). +#: actions/showapplication.php:192 actions/showgroup.php:453 #: lib/profileaction.php:187 msgid "Statistics" msgstr "统计" @@ -4369,6 +4483,11 @@ msgstr "应用程序动作" msgid "Reset key & secret" msgstr "重置key和secret" +#: actions/showapplication.php:252 lib/deletegroupform.php:121 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 +msgid "Delete" +msgstr "删除" + #: actions/showapplication.php:261 msgid "Application info" msgstr "应用程序信息" @@ -4456,77 +4575,106 @@ msgstr "" msgid "This is a way to share what you like." msgstr "这是一种分享你喜欢的内容的方式。" -#: actions/showgroup.php:82 +#. TRANS: Page title for first group page. %s is a group name. +#: actions/showgroup.php:80 #, php-format msgid "%s group" msgstr "%s 小组" +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" msgstr "%1$s小组,第%2$d页" -#: actions/showgroup.php:227 +#. TRANS: Group profile header (h2). Text hidden by default. +#: actions/showgroup.php:225 msgid "Group profile" msgstr "小组资料" -#: actions/showgroup.php:272 actions/tagother.php:118 +#. TRANS: Label for group URL (dt). Text hidden by default. +#: actions/showgroup.php:275 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "URL 互联网地址" -#: actions/showgroup.php:283 actions/tagother.php:128 +#. TRANS: Label for group description or group note (dt). Text hidden by default. +#: actions/showgroup.php:287 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 msgid "Note" msgstr "注释" -#: actions/showgroup.php:293 lib/groupeditform.php:184 +#. TRANS: Label for group aliases (dt). Text hidden by default. +#: actions/showgroup.php:298 lib/groupeditform.php:184 msgid "Aliases" msgstr "别名" -#: actions/showgroup.php:302 +#. TRANS: Group actions header (h2). Text hidden by default. +#: actions/showgroup.php:309 msgid "Group actions" msgstr "小组动作" -#: actions/showgroup.php:344 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s小组的消息聚合 (RSS 1.0)" -#: actions/showgroup.php:350 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:357 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s小组的消息聚合 (RSS 2.0)" -#: actions/showgroup.php:356 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:364 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "%s小组的消息聚合 (Atom)" -#: actions/showgroup.php:361 +#. TRANS: Tooltip for feed link. %s is a group nickname. +#: actions/showgroup.php:370 #, php-format msgid "FOAF for %s group" msgstr "%s 的发件箱" -#: actions/showgroup.php:399 actions/showgroup.php:451 +#. TRANS: Header for mini list of group members on a group page (h2). +#: actions/showgroup.php:407 msgid "Members" msgstr "小组成员" -#: actions/showgroup.php:404 lib/profileaction.php:117 +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#: actions/showgroup.php:413 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(无)" -#: actions/showgroup.php:410 +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +#: actions/showgroup.php:422 msgid "All members" msgstr "所有成员" -#: actions/showgroup.php:445 +#. TRANS: Label for creation date in statistics on group page. +#: actions/showgroup.php:458 +#, fuzzy +msgctxt "LABEL" msgid "Created" msgstr "建立" -#: actions/showgroup.php:461 +#. TRANS: Label for member count in statistics on group page. +#: actions/showgroup.php:466 +#, fuzzy +msgctxt "LABEL" +msgid "Members" +msgstr "小组成员" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:481 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4541,7 +4689,10 @@ msgstr "" "入](%%%%action.register%%%%)成为该小组的一员并享受更多的欢乐!([阅读更多](%%" "%%doc.help%%%%))" -#: actions/showgroup.php:467 +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#: actions/showgroup.php:491 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4554,24 +4705,31 @@ msgstr "" "E5%BE%AE%E5%8D%9A%E5%AE%A2)。%%%%site.name%%%%的用户分享关于他们生活和各种兴" "趣的消息。" -#: actions/showgroup.php:495 +#. TRANS: Header for list of group administrators on a group page (h2). +#: actions/showgroup.php:520 msgid "Admins" msgstr "管理员" -#: actions/showmessage.php:81 +#. TRANS: Client error displayed requesting a single message that does not exist. +#: actions/showmessage.php:79 msgid "No such message." msgstr "未找到此消息。" -#: actions/showmessage.php:98 +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "只有发送和接受双方可以阅读此消息。" -#: actions/showmessage.php:108 +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "发送给 %1$s 的 %2$s 消息" -#: actions/showmessage.php:113 +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "来自 %1$s 的 %2$s 消息" @@ -5005,12 +5163,14 @@ msgstr "快照将被发送到这个 URL" msgid "Save snapshot settings" msgstr "保存访问设置" -#: actions/subedit.php:70 +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +#: actions/subedit.php:75 msgid "You are not subscribed to that profile." msgstr "你没有关注这个用户" +#. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:83 classes/Subscription.php:136 +#: actions/subedit.php:89 classes/Subscription.php:136 msgid "Could not save subscription." msgstr "无法保存关注。" @@ -5791,12 +5951,12 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "欢迎来到 %1$s,@%2$s!" #. TRANS: Server exception. -#: classes/User.php:902 +#: classes/User.php:912 msgid "No single user defined for single-user mode." msgstr "没有单独的用户被定义为单用户模式。" #. TRANS: Server exception. -#: classes/User.php:906 +#: classes/User.php:916 msgid "Single-user mode code called when not enabled." msgstr "" @@ -6940,7 +7100,8 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:65 +#. TRANS: Header for feed links (h2). +#: lib/feedlist.php:66 msgid "Feeds" msgstr "Feeds" @@ -7098,39 +7259,54 @@ msgstr "这个页面不提供你想要的媒体类型" msgid "Unsupported image file format." msgstr "不支持这种图像格式。" -#: lib/imagefile.php:88 +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#: lib/imagefile.php:90 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "文件太大。文件大小限制在%s以下。" -#: lib/imagefile.php:93 +#: lib/imagefile.php:95 msgid "Partial upload." msgstr "部分上传。" #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: lib/imagefile.php:101 lib/mediafile.php:179 +#: lib/imagefile.php:103 lib/mediafile.php:179 msgid "System error uploading file." msgstr "上传文件时出错。" -#: lib/imagefile.php:109 +#: lib/imagefile.php:111 msgid "Not an image or corrupt file." msgstr "不是图片文件或文件已损坏。" -#: lib/imagefile.php:122 +#: lib/imagefile.php:124 msgid "Lost our file." msgstr "文件数据丢失" -#: lib/imagefile.php:163 lib/imagefile.php:224 +#: lib/imagefile.php:165 lib/imagefile.php:226 msgid "Unknown file type" msgstr "未知文件类型" -#: lib/imagefile.php:244 -msgid "MB" -msgstr "MB" +#. TRANS: Number of megabytes. %d is the number. +#: lib/imagefile.php:248 +#, fuzzy, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "MB" -#: lib/imagefile.php:246 -msgid "kB" -msgstr "kB" +#. TRANS: Number of kilobytes. %d is the number. +#: lib/imagefile.php:252 +#, fuzzy, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "kB" + +#. TRANS: Number of bytes. %d is the number. +#: lib/imagefile.php:255 +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "" #: lib/jabber.php:387 #, php-format @@ -8014,6 +8190,13 @@ msgstr "打开主题文件时出错。" msgid "Top posters" msgstr "灌水精英" +#. TRANS: Title for the form to unblock a user. +#: lib/unblockform.php:67 +#, fuzzy +msgctxt "TITLE" +msgid "Unblock" +msgstr "取消屏蔽" + #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "移出沙盒" @@ -8188,3 +8371,9 @@ msgstr "没有用户被指定;使用备份用户。" #, php-format msgid "%d entries in backup." msgstr "备份中有 %d 个条目。" + +#~ msgid "Description is too long (max %d chars)." +#~ msgstr "描述过长(不能超过%d 个字符)。" + +#~ msgid "Too many aliases! Maximum %d." +#~ msgstr "太多别名了!最多%d 个。" diff --git a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po index cbe5e05544..66ffa6b7ac 100644 --- a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-27 23:46:09+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:20:58+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-20 17:58:21+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-29 16:11:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" @@ -80,7 +80,7 @@ msgstr "Código colocado dentro de um retângulo." #: adsenseadminpanel.php:188 msgid "Leaderboard" -msgstr "" +msgstr "Classificação" #: adsenseadminpanel.php:189 msgid "Leaderboard slot code" diff --git a/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po index 5b60c244d1..0680fec716 100644 --- a/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-27 23:43+0000\n" -"PO-Revision-Date: 2010-10-27 23:46:35+0000\n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:21:30+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-23 18:57:01+0000\n" -"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-29 16:12:45+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" @@ -37,7 +37,7 @@ msgid "" msgstr "" "Hallo %1$s.\n" "\n" -"Het spijt ons je te moeten meedelen dat het niet mogelijk is uw " +"Het spijt ons u te moeten meedelen dat het niet mogelijk is uw " "Facebookstatus bij te werken vanuit %2$s. De Facebookapplicatie is " "uitgeschakeld voor uw gebruiker. Dit kan komen doordat u de toegangsrechten " "voor de Facebookapplicatie hebt ingetrokken of omdat u uw Facebookgebruiker " diff --git a/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po b/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po new file mode 100644 index 0000000000..c0ce345eb2 --- /dev/null +++ b/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - XCache to Finnish (Suomi) +# Expored from translatewiki.net +# +# Author: Centerlink +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - XCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-30 23:18+0000\n" +"PO-Revision-Date: 2010-10-30 23:23:06+0000\n" +"Language-Team: Finnish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-29 16:14:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75708); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fi\n" +"X-Message-Group: #out-statusnet-plugin-xcache\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: XCachePlugin.php:120 +msgid "" +"Use the XCache variable cache to " +"cache query results." +msgstr "" +"Käytä XCache-muuttujavälimuistia " +"kyselyn tulosten tallentamiseksi välimuistiin." From b89dfa3a5b5d0febdbf1a45f2a8b855315204b69 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 1 Nov 2010 13:50:24 +0100 Subject: [PATCH 11/22] Fix i18n issues that are solved by using plural. --- lib/command.php | 12 ++++++++---- lib/groupeditform.php | 13 +++++++++---- lib/themeuploader.php | 7 ++++--- 3 files changed, 21 insertions(+), 11 deletions(-) diff --git a/lib/command.php b/lib/command.php index 658262a090..329617b3bc 100644 --- a/lib/command.php +++ b/lib/command.php @@ -483,9 +483,11 @@ class MessageCommand extends Command if (Message::contentTooLong($this->text)) { // XXX: i18n. Needs plural support. - // TRANS: Message given if content is too long. + // TRANS: Message given if content is too long. %1$sd is used for plural. // TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. - $channel->error($this->user, sprintf(_('Message too long - maximum is %1$d characters, you sent %2$d.'), + $channel->error($this->user, sprintf(_m('Message too long - maximum is %1$d character, you sent %2$d.', + 'Message too long - maximum is %1$d characters, you sent %2$d.', + Message::maxContent()), Message::maxContent(), mb_strlen($this->text))); return; } @@ -584,9 +586,11 @@ class ReplyCommand extends Command if (Notice::contentTooLong($this->text)) { // XXX: i18n. Needs plural support. - // TRANS: Message given if content of a notice for a reply is too long. + // TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. // TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. - $channel->error($this->user, sprintf(_('Notice too long - maximum is %1$d characters, you sent %2$d.'), + $channel->error($this->user, sprintf(_m('Notice too long - maximum is %1$d character, you sent %2$d.', + 'Notice too long - maximum is %1$d characters, you sent %2$d.', + Notice::maxContent()), Notice::maxContent(), mb_strlen($this->text))); return; } diff --git a/lib/groupeditform.php b/lib/groupeditform.php index 433f6a1387..f939fc1b65 100644 --- a/lib/groupeditform.php +++ b/lib/groupeditform.php @@ -160,14 +160,17 @@ class GroupEditForm extends Form $this->out->elementStart('li'); $this->out->input('homepage', _('Homepage'), ($this->out->arg('homepage')) ? $this->out->arg('homepage') : $homepage, - _('URL of the homepage or blog of the group or topic')); + _('URL of the homepage or blog of the group or topic.')); $this->out->elementEnd('li'); $this->out->elementStart('li'); $desclimit = User_group::maxDescription(); if ($desclimit == 0) { $descinstr = _('Describe the group or topic'); } else { - $descinstr = sprintf(_('Describe the group or topic in %d characters'), $desclimit); + $descinstr = sprintf(_m('Describe the group or topic in %d character or less', + 'Describe the group or topic in %d characters or less', + $desclimit), + $desclimit); } $this->out->textarea('description', _('Description'), ($this->out->arg('description')) ? $this->out->arg('description') : $description, @@ -176,7 +179,7 @@ class GroupEditForm extends Form $this->out->elementStart('li'); $this->out->input('location', _('Location'), ($this->out->arg('location')) ? $this->out->arg('location') : $location, - _('Location for the group, if any, like "City, State (or Region), Country"')); + _('Location for the group, if any, like "City, State (or Region), Country".')); $this->out->elementEnd('li'); if (common_config('group', 'maxaliases') > 0) { $aliases = (empty($this->group)) ? array() : $this->group->getAliases(); @@ -184,7 +187,9 @@ class GroupEditForm extends Form $this->out->input('aliases', _('Aliases'), ($this->out->arg('aliases')) ? $this->out->arg('aliases') : (!empty($aliases)) ? implode(' ', $aliases) : '', - sprintf(_('Extra nicknames for the group, comma- or space- separated, max %d'), + sprintf(_m('Extra nicknames for the group, separated with commas or spaces. Maximum %d alias allowed.', + 'Extra nicknames for the group, separated with commas or spaces. Maximum %d aliases allowed.', + common_config('group', 'maxaliases')), common_config('group', 'maxaliases')));; $this->out->elementEnd('li'); } diff --git a/lib/themeuploader.php b/lib/themeuploader.php index 5a48e884ed..b7b14d7b9e 100644 --- a/lib/themeuploader.php +++ b/lib/themeuploader.php @@ -163,9 +163,10 @@ class ThemeUploader $estSize = $blockSize * max(1, intval(ceil($size / $blockSize))); $totalSize += $estSize; if ($totalSize > $sizeLimit) { - $msg = sprintf(_("Uploaded theme is too large; " . - "must be less than %d bytes uncompressed."), - $sizeLimit); + $msg = sprintf(_m('Uploaded theme is too large; must be less than %d byte uncompressed.', + 'Uploaded theme is too large; must be less than %d bytes uncompressed.', + $sizeLimit), + $sizeLimit); throw new ClientException($msg); } From 9b7ac27c69520aad00230aab7067e83642e38fe7 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 1 Nov 2010 13:55:24 +0100 Subject: [PATCH 12/22] * add translator documentation. * i18n FIXME tagging. --- lib/searchaction.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/searchaction.php b/lib/searchaction.php index 14c3ed016d..6d7f46cd6e 100644 --- a/lib/searchaction.php +++ b/lib/searchaction.php @@ -70,7 +70,6 @@ class SearchAction extends Action * @return void * @see SearchGroupNav */ - function showLocalNav() { $nav = new SearchGroupNav($this, $this->trimmed('q')); @@ -127,6 +126,7 @@ class SearchAction extends Action // TRANS: Used as a field label for the field where one or more keywords // TRANS: for searching can be entered. $this->input('q', _('Keyword(s)'), $q); + // TRANS: Button text for searching site. $this->submit('search', _m('BUTTON','Search')); $this->elementEnd('li'); $this->elementEnd('ul'); @@ -138,7 +138,7 @@ class SearchAction extends Action } function searchSuggestions($q) { - // @todo FIXME: This formatting does not make this string get picked up by gettext. + // @todo FIXME: i18n issue: This formatting does not make this string get picked up by gettext. // TRANS: Standard search suggestions shown when a search does not give any results. $message = _(<< Date: Mon, 1 Nov 2010 14:19:37 +0100 Subject: [PATCH 13/22] Update translator documentation. --- actions/othersettings.php | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/actions/othersettings.php b/actions/othersettings.php index 10e9873b39..e2366b79ea 100644 --- a/actions/othersettings.php +++ b/actions/othersettings.php @@ -46,7 +46,6 @@ require_once INSTALLDIR.'/lib/accountsettingsaction.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class OthersettingsAction extends AccountSettingsAction { /** @@ -54,9 +53,9 @@ class OthersettingsAction extends AccountSettingsAction * * @return string Title of the page */ - function title() { + // Page title for a tab in user profile settings. return _('Other settings'); } @@ -68,6 +67,7 @@ class OthersettingsAction extends AccountSettingsAction function getInstructions() { + // TRANS: Instructions for tab "Other" in user profile settings. return _('Manage various other options.'); } @@ -105,6 +105,9 @@ class OthersettingsAction extends AccountSettingsAction { $services[$name]=$name; if($value['freeService']){ + // TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a + // TRANS: user's profile settings. This message has one space at the beginning. Use your + // TRANS: language's word separator here if it has one (most likely a single space). $services[$name].=_(' (free service)'); } } @@ -113,17 +116,22 @@ class OthersettingsAction extends AccountSettingsAction asort($services); $this->elementStart('li'); + // TRANS: Label for dropdown with URL shortener services. $this->dropdown('urlshorteningservice', _('Shorten URLs with'), + // TRANS: Tooltip for for dropdown with URL shortener services. $services, _('Automatic shortening service to use.'), false, $user->urlshorteningservice); $this->elementEnd('li'); } $this->elementStart('li'); + // TRANS: Label for checkbox. $this->checkbox('viewdesigns', _('View profile designs'), + // TRANS: Tooltip for checkbox. $user->viewdesigns, _('Show or hide profile designs.')); $this->elementEnd('li'); $this->elementEnd('ul'); - $this->submit('save', _('Save')); + // TRANS: Button text for saving "Other settings" in profile. + $this->submit('save', _m('BUTTON','Save')); $this->elementEnd('fieldset'); $this->elementEnd('form'); } @@ -150,7 +158,8 @@ class OthersettingsAction extends AccountSettingsAction $urlshorteningservice = $this->trimmed('urlshorteningservice'); if (!is_null($urlshorteningservice) && strlen($urlshorteningservice) > 50) { - $this->showForm(_('URL shortening service is too long (max 50 chars).')); + // TRANS: Form validation error for form "Other settings" in user profile. + $this->showForm(_('URL shortening service is too long (maximum 50 chars).')); return; } @@ -171,6 +180,7 @@ class OthersettingsAction extends AccountSettingsAction if ($result === false) { common_log_db_error($user, 'UPDATE', __FILE__); + // TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. $this->serverError(_('Couldn\'t update user.')); return; } From 6ab34fd8e8632e265d9e329a59272203be5169f7 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 1 Nov 2010 14:44:37 +0100 Subject: [PATCH 14/22] * i18n/L10n updates. * translator documentation added. * superfluous whitespace removed. --- actions/editapplication.php | 2 +- actions/licenseadminpanel.php | 2 +- actions/newapplication.php | 4 +-- actions/newnotice.php | 17 ++++++------ actions/othersettings.php | 2 +- actions/recoverpassword.php | 2 +- actions/sitenoticeadminpanel.php | 19 ++++++++------ actions/useradminpanel.php | 45 ++++++++++++++++++-------------- lib/groupeditform.php | 2 +- lib/mailhandler.php | 5 ++-- 10 files changed, 56 insertions(+), 44 deletions(-) diff --git a/actions/editapplication.php b/actions/editapplication.php index d1c7a5c3d5..760b1d284e 100644 --- a/actions/editapplication.php +++ b/actions/editapplication.php @@ -185,7 +185,7 @@ class EditApplicationAction extends OwnerDesignAction return; } elseif (mb_strlen($name) > 255) { // TRANS: Validation error shown when providing too long a name in the "Edit application" form. - $this->showForm(_('Name is too long (max 255 characters).')); + $this->showForm(_('Name is too long (maximum 255 characters).')); return; } else if ($this->nameExists($name)) { // TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form. diff --git a/actions/licenseadminpanel.php b/actions/licenseadminpanel.php index 9165ca19d9..95ac48cc8f 100644 --- a/actions/licenseadminpanel.php +++ b/actions/licenseadminpanel.php @@ -153,7 +153,7 @@ class LicenseadminpanelAction extends AdminPanelAction // Make sure the license title is not too long if (mb_strlen($values['license']['type']) > 255) { $this->clientError( - _("Invalid license title. Max length is 255 characters.") + _('Invalid license title. Maximum length is 255 characters.') ); } diff --git a/actions/newapplication.php b/actions/newapplication.php index 033c0852d9..ae17545589 100644 --- a/actions/newapplication.php +++ b/actions/newapplication.php @@ -166,7 +166,7 @@ class NewApplicationAction extends OwnerDesignAction $this->showForm(_('Name already in use. Try another one.')); return; } elseif (mb_strlen($name) > 255) { - $this->showForm(_('Name is too long (maximum 255 chars).')); + $this->showForm(_('Name is too long (maximum 255 characters).')); return; } elseif (empty($description)) { $this->showForm(_('Description is required.')); @@ -196,7 +196,7 @@ class NewApplicationAction extends OwnerDesignAction $this->showForm(_('Organization is required.')); return; } elseif (mb_strlen($organization) > 255) { - $this->showForm(_('Organization is too long (maximum 255 chars).')); + $this->showForm(_('Organization is too long (maximum 255 characters).')); return; } elseif (empty($homepage)) { $this->showForm(_('Organization homepage is required.')); diff --git a/actions/newnotice.php b/actions/newnotice.php index 57cd847c6e..0d4dcfccd5 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -156,8 +156,11 @@ class NewnoticeAction extends Action $content_shortened = common_shorten_links($content); if (Notice::contentTooLong($content_shortened)) { - $this->clientError(sprintf(_('That\'s too long. '. - 'Max notice size is %d chars.'), + // TRANS: Client error displayed when the parameter "status" is missing. + // TRANS: %d is the maximum number of character for a notice. + $this->clientError(sprintf(_m('That\'s too long. Maximum notice size is %d character.', + 'That\'s too long. Maximum notice size is %d characters.', + Notice::maxContent()), Notice::maxContent())); } @@ -178,12 +181,10 @@ class NewnoticeAction extends Action if (Notice::contentTooLong($content_shortened)) { $upload->delete(); - $this->clientError( - sprintf( - _('Max notice size is %d chars, including attachment URL.'), - Notice::maxContent() - ) - ); + $this->clientError(sprintf(_m('Maximum notice size is %d character, including attachment URL.', + 'Maximum notice size is %d characters, including attachment URL.', + Notice::maxContent()), + Notice::maxContent())); } } diff --git a/actions/othersettings.php b/actions/othersettings.php index e2366b79ea..13460a4bfb 100644 --- a/actions/othersettings.php +++ b/actions/othersettings.php @@ -159,7 +159,7 @@ class OthersettingsAction extends AccountSettingsAction if (!is_null($urlshorteningservice) && strlen($urlshorteningservice) > 50) { // TRANS: Form validation error for form "Other settings" in user profile. - $this->showForm(_('URL shortening service is too long (maximum 50 chars).')); + $this->showForm(_('URL shortening service is too long (maximum 50 characters).')); return; } diff --git a/actions/recoverpassword.php b/actions/recoverpassword.php index f9956897f6..33b0440e40 100644 --- a/actions/recoverpassword.php +++ b/actions/recoverpassword.php @@ -362,7 +362,7 @@ class RecoverpasswordAction extends Action $confirm = $this->trimmed('confirm'); if (!$newpassword || strlen($newpassword) < 6) { - $this->showPasswordForm(_('Password must be 6 chars or more.')); + $this->showPasswordForm(_('Password must be 6 characters or more.')); return; } if ($newpassword != $confirm) { diff --git a/actions/sitenoticeadminpanel.php b/actions/sitenoticeadminpanel.php index bdcaa23557..797a6c4f4c 100644 --- a/actions/sitenoticeadminpanel.php +++ b/actions/sitenoticeadminpanel.php @@ -42,7 +42,6 @@ require_once INSTALLDIR.'/extlib/htmLawed/htmLawed.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class SitenoticeadminpanelAction extends AdminPanelAction { /** @@ -50,9 +49,9 @@ class SitenoticeadminpanelAction extends AdminPanelAction * * @return string page title */ - function title() { + // TRANS: Page title for site-wide notice tab in admin panel. return _('Site Notice'); } @@ -61,9 +60,9 @@ class SitenoticeadminpanelAction extends AdminPanelAction * * @return string instructions */ - function getInstructions() { + // TRANS: Instructions for site-wide notice tab in admin panel. return _('Edit site-wide message'); } @@ -72,7 +71,6 @@ class SitenoticeadminpanelAction extends AdminPanelAction * * @return void */ - function showForm() { $form = new SiteNoticeAdminPanelForm($this); @@ -85,7 +83,6 @@ class SitenoticeadminpanelAction extends AdminPanelAction * * @return void */ - function saveSettings() { $siteNotice = $this->trimmed('site-notice'); @@ -100,6 +97,7 @@ class SitenoticeadminpanelAction extends AdminPanelAction $result = Config::save('site', 'notice', $siteNotice); if (!$result) { + // TRANS: Server error displayed when saving a site-wide notice was impossible. $this->ServerError(_("Unable to save site notice.")); } } @@ -110,7 +108,8 @@ class SitenoticeadminpanelAction extends AdminPanelAction if (mb_strlen($siteNotice) > 255) { $this->clientError( - _('Max length for the site-wide notice is 255 chars.') + // TRANS: Client error displayed when a site-wide notice was longer than allowed. + _('Maximum length for the site-wide notice is 255 characters.') ); } @@ -173,9 +172,11 @@ class SiteNoticeAdminPanelForm extends AdminForm $this->out->elementStart('li'); $this->out->textarea( 'site-notice', + // TRANS: Label for site-wide notice text field in admin panel. _('Site notice text'), common_config('site', 'notice'), - _('Site-wide notice text (255 chars max; HTML okay)') + // TRANS: Tooltip for site-wide notice text field in admin panel. + _('Site-wide notice text (255 characters maximum; HTML allowed)') ); $this->out->elementEnd('li'); @@ -192,9 +193,11 @@ class SiteNoticeAdminPanelForm extends AdminForm { $this->out->submit( 'submit', - _('Save'), + // TRANS: Button text for saving site notice in admin panel. + _m('BUTTON','Save'), 'submit', null, + // TRANS: Title for button to save site notice in admin panel. _('Save site notice') ); } diff --git a/actions/useradminpanel.php b/actions/useradminpanel.php index 04e0ca3e75..fc75e83b2d 100644 --- a/actions/useradminpanel.php +++ b/actions/useradminpanel.php @@ -45,7 +45,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class UseradminpanelAction extends AdminPanelAction { /** @@ -53,7 +52,6 @@ class UseradminpanelAction extends AdminPanelAction * * @return string page title */ - function title() { // TRANS: User admin panel title @@ -65,9 +63,9 @@ class UseradminpanelAction extends AdminPanelAction * * @return string instructions */ - function getInstructions() { + // TRANS: Instruction for user admin panel. return _('User settings for this StatusNet site'); } @@ -76,7 +74,6 @@ class UseradminpanelAction extends AdminPanelAction * * @return void */ - function showForm() { $form = new UserAdminPanelForm($this); @@ -89,7 +86,6 @@ class UseradminpanelAction extends AdminPanelAction * * @return void */ - function saveSettings() { static $settings = array( @@ -147,13 +143,15 @@ class UseradminpanelAction extends AdminPanelAction // Validate biolimit if (!Validate::number($values['profile']['biolimit'])) { - $this->clientError(_("Invalid bio limit. Must be numeric.")); + // TRANS: Form validation error in user admin panel when a non-numeric character limit was set. + $this->clientError(_('Invalid bio limit. Must be numeric.')); } // Validate welcome text if (mb_strlen($values['newuser']['welcome']) > 255) { - $this->clientError(_("Invalid welcome text. Max length is 255 characters.")); + // TRANS: Form validation error in user admin panel when welcome text is too long. + $this->clientError(_('Invalid welcome text. Maximum length is 255 characters.')); } // Validate default subscription @@ -163,7 +161,9 @@ class UseradminpanelAction extends AdminPanelAction if (empty($defuser)) { $this->clientError( sprintf( - _('Invalid default subscripton: \'%1$s\' is not user.'), + // TRANS: Client error displayed when trying to set a non-existing user as default subscription for new + // TRANS: users in user admin panel. %1$s is the invalid nickname. + _('Invalid default subscripton: \'%1$s\' is not a user.'), $values['newuser']['default'] ) ); @@ -179,7 +179,6 @@ class UserAdminPanelForm extends AdminForm * * @return int ID of the form */ - function id() { return 'useradminpanel'; @@ -190,7 +189,6 @@ class UserAdminPanelForm extends AdminForm * * @return string class of the form */ - function formClass() { return 'form_settings'; @@ -201,7 +199,6 @@ class UserAdminPanelForm extends AdminForm * * @return string URL of the action */ - function action() { return common_local_url('useradminpanel'); @@ -212,7 +209,6 @@ class UserAdminPanelForm extends AdminForm * * @return void */ - function formData() { $this->out->elementStart('fieldset', array('id' => 'settings_user-profile')); @@ -220,7 +216,9 @@ class UserAdminPanelForm extends AdminForm $this->out->elementStart('ul', 'form_data'); $this->li(); + // TRANS: Field label in user admin panel for setting the character limit for the bio field. $this->input('biolimit', _('Bio Limit'), + // TRANS: Tooltip in user admin panel for setting the character limit for the bio field. _('Maximum length of a profile bio in characters.'), 'profile'); $this->unli(); @@ -229,17 +227,22 @@ class UserAdminPanelForm extends AdminForm $this->out->elementEnd('fieldset'); $this->out->elementStart('fieldset', array('id' => 'settings_user-newusers')); + // TRANS: Form legend in user admin panel. $this->out->element('legend', null, _('New users')); $this->out->elementStart('ul', 'form_data'); $this->li(); + // TRANS: Field label in user admin panel for setting new user welcome text. $this->input('welcome', _('New user welcome'), - _('Welcome text for new users (Max 255 chars).'), + // TRANS: Tooltip in user admin panel for setting new user welcome text. + _('Welcome text for new users (maximum 255 characters).'), 'newuser'); $this->unli(); $this->li(); + // TRANS: Field label in user admin panel for setting default subscription for new users. $this->input('default', _('Default subscription'), + // TRANS: Tooltip in user admin panel for setting default subscription for new users. _('Automatically subscribe new users to this user.'), 'newuser'); $this->unli(); @@ -249,21 +252,21 @@ class UserAdminPanelForm extends AdminForm $this->out->elementEnd('fieldset'); $this->out->elementStart('fieldset', array('id' => 'settings_user-invitations')); + // TRANS: Form legend in user admin panel. $this->out->element('legend', null, _('Invitations')); $this->out->elementStart('ul', 'form_data'); $this->li(); + // TRANS: Field label for checkbox in user admin panel for allowing users to invite friend using site e-mail. $this->out->checkbox('invite-enabled', _('Invitations enabled'), (bool) $this->value('enabled', 'invite'), + // TRANS: Tooltip for checkbox in user admin panel for allowing users to invite friend using site e-mail. _('Whether to allow users to invite new users.')); $this->unli(); $this->out->elementEnd('ul'); $this->out->elementEnd('fieldset'); - - - } /** @@ -278,7 +281,6 @@ class UserAdminPanelForm extends AdminForm * * @return void */ - function input($setting, $title, $instructions, $section='site') { $this->out->input("$section-$setting", $title, $this->value($setting, $section), $instructions); @@ -289,9 +291,14 @@ class UserAdminPanelForm extends AdminForm * * @return void */ - function formActions() { - $this->out->submit('submit', _('Save'), 'submit', null, _('Save user settings')); + $this->out->submit('submit', + // TRANS: Button text to save user settings in user admin panel. + _m('BUTTON','Save'), + 'submit', + null, + // TRANS: Title for button to save user settings in user admin panel. + _('Save user settings')); } } diff --git a/lib/groupeditform.php b/lib/groupeditform.php index f939fc1b65..cc25f06886 100644 --- a/lib/groupeditform.php +++ b/lib/groupeditform.php @@ -204,6 +204,6 @@ class GroupEditForm extends Form function formActions() { - $this->out->submit('submit', _('Save')); + $this->out->submit('submit', _m('BUTTON','Save')); } } diff --git a/lib/mailhandler.php b/lib/mailhandler.php index e9ba418399..69eb26bdd8 100644 --- a/lib/mailhandler.php +++ b/lib/mailhandler.php @@ -57,8 +57,9 @@ class MailHandler $msg = $this->cleanup_msg($msg); $msg = common_shorten_links($msg); if (Notice::contentTooLong($msg)) { - $this->error($from, sprintf(_('That\'s too long. '. - 'Max notice size is %d chars.'), + $this->error($from, sprintf(_('That\'s too long. Maximum notice size is %d character.', + 'That\'s too long. Maximum notice size is %d characters.', + Notice::maxContent()), Notice::maxContent())); } From 760a1c27bc37a20b70788e5e132c4cf9da1bb579 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 1 Nov 2010 16:26:23 +0100 Subject: [PATCH 15/22] Update translator documentation. --- actions/deleteapplication.php | 11 ++++++----- actions/deletegroup.php | 4 ++-- actions/deletenotice.php | 11 ++++++++--- 3 files changed, 16 insertions(+), 10 deletions(-) diff --git a/actions/deleteapplication.php b/actions/deleteapplication.php index 806de0be6e..272a91762c 100644 --- a/actions/deleteapplication.php +++ b/actions/deleteapplication.php @@ -40,7 +40,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class DeleteapplicationAction extends Action { var $app = null; @@ -52,7 +51,6 @@ class DeleteapplicationAction extends Action * * @return boolean success flag */ - function prepare($args) { if (!parent::prepare($args)) { @@ -60,6 +58,7 @@ class DeleteapplicationAction extends Action } if (!common_logged_in()) { + // TRANS: Client error displayed trying to delete an application while not logged in. $this->clientError(_('You must be logged in to delete an application.')); return false; } @@ -68,6 +67,7 @@ class DeleteapplicationAction extends Action $this->app = Oauth_application::staticGet('id', $id); if (empty($this->app)) { + // TRANS: Client error displayed trying to delete an application that does not exist. $this->clientError(_('Application not found.')); return false; } @@ -75,6 +75,7 @@ class DeleteapplicationAction extends Action $cur = common_current_user(); if ($cur->id != $this->app->owner) { + // TRANS: Client error displayed trying to delete an application the current user does not own. $this->clientError(_('You are not the owner of this application.'), 401); return false; } @@ -91,7 +92,6 @@ class DeleteapplicationAction extends Action * * @return void */ - function handle($args) { if ($_SERVER['REQUEST_METHOD'] == 'POST') { @@ -120,6 +120,7 @@ class DeleteapplicationAction extends Action } function title() { + // TRANS: Title for delete application page. return _('Delete application'); } @@ -144,8 +145,10 @@ class DeleteapplicationAction extends Action array('id' => $this->app->id)))); $this->elementStart('fieldset'); $this->hidden('token', common_session_token()); + // TRANS: Fieldset legend on delete application page. $this->element('legend', _('Delete application')); $this->element('p', null, + // TRANS: Confirmation text on delete application page. _('Are you sure you want to delete this application? '. 'This will clear all data about the application from the '. 'database, including all existing user connections.')); @@ -171,10 +174,8 @@ class DeleteapplicationAction extends Action * * @return void */ - function handlePost() { $this->app->delete(); } } - diff --git a/actions/deletegroup.php b/actions/deletegroup.php index 62fff00c48..4e9b9851f1 100644 --- a/actions/deletegroup.php +++ b/actions/deletegroup.php @@ -172,7 +172,7 @@ class DeletegroupAction extends RedirectingAction } function title() { - // TRANS: Title. + // TRANS: Title of delete group page. return _('Delete group'); } @@ -201,8 +201,8 @@ class DeletegroupAction extends RedirectingAction // TRANS: Form legend for deleting a group. $this->element('legend', _('Delete group')); if (Event::handle('StartDeleteGroupForm', array($this, $this->group))) { - // TRANS: Warning in form for deleleting a group. $this->element('p', null, + // TRANS: Warning in form for deleleting a group. _('Are you sure you want to delete this group? '. 'This will clear all data about the group from the '. 'database, without a backup. ' . diff --git a/actions/deletenotice.php b/actions/deletenotice.php index 2879faa5df..a7ac28e19c 100644 --- a/actions/deletenotice.php +++ b/actions/deletenotice.php @@ -32,6 +32,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } +// @todo FIXME: documentation needed. class DeletenoticeAction extends Action { var $error = null; @@ -47,6 +48,7 @@ class DeletenoticeAction extends Action $this->user = common_current_user(); if (!$this->user) { + // TRANS: Error message displayed trying to delete a notice while not logged in. common_user_error(_('Not logged in.')); exit; } @@ -55,6 +57,7 @@ class DeletenoticeAction extends Action $this->notice = Notice::staticGet($notice_id); if (!$this->notice) { + // TRANS: Error message displayed trying to delete a non-existing notice. common_user_error(_('No such notice.')); exit; } @@ -71,6 +74,7 @@ class DeletenoticeAction extends Action if ($this->notice->profile_id != $this->user_profile->id && !$this->user->hasRight(Right::DELETEOTHERSNOTICE)) { + // TRANS: Error message displayed trying to delete a notice that was not made by the current user. common_user_error(_('Can\'t delete this notice.')); exit; } @@ -90,7 +94,6 @@ class DeletenoticeAction extends Action * * @return void */ - function showPageNotice() { $instr = $this->getInstructions(); @@ -103,12 +106,14 @@ class DeletenoticeAction extends Action function getInstructions() { + // TRANS: Instructions for deleting a notice. return _('You are about to permanently delete a notice. ' . 'Once this is done, it cannot be undone.'); } function title() { + // TRANS: Page title when deleting a notice. return _('Delete notice'); } @@ -121,7 +126,6 @@ class DeletenoticeAction extends Action * * @return void */ - function showForm($error = null) { $this->error = $error; @@ -133,7 +137,6 @@ class DeletenoticeAction extends Action * * @return void */ - function showContent() { $this->elementStart('form', array('id' => 'form_notice_delete', @@ -141,9 +144,11 @@ class DeletenoticeAction extends Action 'method' => 'post', 'action' => common_local_url('deletenotice'))); $this->elementStart('fieldset'); + // TRANS: Fieldset legend for the delete notice form. $this->element('legend', null, _('Delete notice')); $this->hidden('token', common_session_token()); $this->hidden('notice', $this->trimmed('notice')); + // TRANS: Message for the delete notice form. $this->element('p', null, _('Are you sure you want to delete this notice?')); $this->submit('form_action-no', // TRANS: Button label on the delete notice form. From 151eebcc289884259e18e95b2d707a2fc1c72b0e Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 2 Nov 2010 11:39:38 -0700 Subject: [PATCH 16/22] Starting on making Realtime plugin's UI messages localizable: pause/play, popup button text and tooltip text are now loaded from PHP code where we can get at gettext. --- plugins/Realtime/RealtimePlugin.php | 24 ++++++++++++++++++++++++ plugins/Realtime/realtimeupdate.js | 24 ++++++++++++++---------- 2 files changed, 38 insertions(+), 10 deletions(-) diff --git a/plugins/Realtime/RealtimePlugin.php b/plugins/Realtime/RealtimePlugin.php index 352afcf785..7a40cdca31 100644 --- a/plugins/Realtime/RealtimePlugin.php +++ b/plugins/Realtime/RealtimePlugin.php @@ -106,7 +106,9 @@ class RealtimePlugin extends Plugin $realtimeUI = ' RealtimeUpdate.initActions("'.$url.'", "'.$timeline.'", "'. $pluginPath .'");'; } + $i18n = $this->_getMessages(); $script = ' $(document).ready(function() { '. + 'RealtimeUpdate._messages=' . json_encode($i18n) . ';' . $realtimeUI. $this->_updateInitialize($timeline, $user_id). '}); '; @@ -326,6 +328,28 @@ class RealtimePlugin extends Plugin return array('plugins/Realtime/realtimeupdate.js'); } + /** + * Any i18n messages that need to be loaded at runtime. + * @return array of string key to output text string pairs + */ + function _getMessages() + { + return array( + // TRANS: Text label for realtime view "play" button, usually replaced by an icon. + 'play' => _m('BUTTON', 'Play'), + // TRANS: Tooltip for realtime view "play" button. + 'play_tooltip' => _m('TOOLTIP', 'Play'), + // TRANS: Text label for realtime view "pause" button + 'pause' => _m('BUTTON', 'Pause'), + // TRANS: Tooltip for realtime view "pause" button + 'pause_tooltip' => _m('TOOLTIP', 'Pause'), + // TRANS: Text label for realtime view "popup" button, usually replaced by an icon. + 'popup' => _m('BUTTON', 'Pop up'), + // TRANS: Tooltip for realtime view "popup" button. + 'popup_tooltip' => _m('TOOLTIP', 'Pop up in a window'), + ); + } + function _updateInitialize($timeline, $user_id) { return "RealtimeUpdate.init($user_id, \"$this->replyurl\", \"$this->favorurl\", \"$this->repeaturl\", \"$this->deleteurl\"); "; diff --git a/plugins/Realtime/realtimeupdate.js b/plugins/Realtime/realtimeupdate.js index 25dc12d584..f764ca738d 100644 --- a/plugins/Realtime/realtimeupdate.js +++ b/plugins/Realtime/realtimeupdate.js @@ -40,6 +40,7 @@ RealtimeUpdate = { _documenttitle: '', _paused:false, _queuedNotices:[], + _messages:{}, init: function(userid, replyurl, favorurl, repeaturl, deleteurl) { @@ -261,9 +262,10 @@ RealtimeUpdate = { RealtimeUpdate.addNoticesHover(); $('#realtime_playpause').remove(); - $('#realtime_actions').prepend('
  • '); - - $('#realtime_pause').bind('click', function() { + $('#realtime_actions').prepend('
  • '); + $('#realtime_pause').text(RealtimeUpdate._messages['pause']) + .attr('title', RealtimeUpdate._messages['pause_tooltip']) + .bind('click', function() { RealtimeUpdate.removeNoticesHover(); RealtimeUpdate.showPlay(); return false; @@ -274,9 +276,10 @@ RealtimeUpdate = { { RealtimeUpdate.setPause(true); $('#realtime_playpause').remove(); - $('#realtime_actions').prepend('
  • '); - - $('#realtime_play').bind('click', function() { + $('#realtime_actions').prepend('
  • '); + $('#realtime_play').text(RealtimeUpdate._messages['play']) + .attr('title', RealtimeUpdate._messages['play_tooltip']) + .bind('click', function() { RealtimeUpdate.showPause(); return false; }); @@ -334,10 +337,11 @@ RealtimeUpdate = { initAddPopup: function(url, timeline, path) { - $('#realtime_timeline').append(''); - - $('#realtime_popup').bind('click', function() { - window.open(url, + $('#realtime_timeline').append(''); + $('#realtime_popup').text(RealtimeUpdate._messages['popup']) + .attr('title', RealtimeUpdate._messages['popup_tooltip']) + .bind('click', function() { + window.open(url, '', 'toolbar=no,resizable=yes,scrollbars=yes,status=no,menubar=no,personalbar=no,location=no,width=500,height=550'); From 194bb022526d2f2fcc447a0e4835a4e5bb12baa2 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Tue, 2 Nov 2010 20:49:34 +0100 Subject: [PATCH 17/22] * add POT file * remove superfluous whitespace * break lines at 80 or before in README --- plugins/Realtime/README | 4 +-- plugins/Realtime/RealtimePlugin.php | 1 - plugins/Realtime/locale/Realtime.pot | 53 ++++++++++++++++++++++++++++ plugins/Realtime/realtimeupdate.css | 2 -- 4 files changed, 55 insertions(+), 5 deletions(-) create mode 100644 plugins/Realtime/locale/Realtime.pot diff --git a/plugins/Realtime/README b/plugins/Realtime/README index 99c79cfab5..9b36d87f37 100644 --- a/plugins/Realtime/README +++ b/plugins/Realtime/README @@ -5,6 +5,6 @@ * Pause ~ retain up to 50-100 most recent notices * Add geo data * Make it work for Conversation page (perhaps a little tricky) -* IE is updating the counter in document title all the time (Not sure if this is still an issue) +* IE is updating the counter in document title all the time (Not sure if this + is still an issue) * Reconsider the timestamp approach - diff --git a/plugins/Realtime/RealtimePlugin.php b/plugins/Realtime/RealtimePlugin.php index 7a40cdca31..23e8fb4d9e 100644 --- a/plugins/Realtime/RealtimePlugin.php +++ b/plugins/Realtime/RealtimePlugin.php @@ -43,7 +43,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class RealtimePlugin extends Plugin { protected $replyurl = null; diff --git a/plugins/Realtime/locale/Realtime.pot b/plugins/Realtime/locale/Realtime.pot new file mode 100644 index 0000000000..e491ce0c75 --- /dev/null +++ b/plugins/Realtime/locale/Realtime.pot @@ -0,0 +1,53 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-11-02 19:46+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. TRANS: Text label for realtime view "play" button, usually replaced by an icon. +#: RealtimePlugin.php:339 +msgctxt "BUTTON" +msgid "Play" +msgstr "" + +#. TRANS: Tooltip for realtime view "play" button. +#: RealtimePlugin.php:341 +msgctxt "TOOLTIP" +msgid "Play" +msgstr "" + +#. TRANS: Text label for realtime view "pause" button +#: RealtimePlugin.php:343 +msgctxt "BUTTON" +msgid "Pause" +msgstr "" + +#. TRANS: Tooltip for realtime view "pause" button +#: RealtimePlugin.php:345 +msgctxt "TOOLTIP" +msgid "Pause" +msgstr "" + +#. TRANS: Text label for realtime view "popup" button, usually replaced by an icon. +#: RealtimePlugin.php:347 +msgctxt "BUTTON" +msgid "Pop up" +msgstr "" + +#. TRANS: Tooltip for realtime view "popup" button. +#: RealtimePlugin.php:349 +msgctxt "TOOLTIP" +msgid "Pop up in a window" +msgstr "" diff --git a/plugins/Realtime/realtimeupdate.css b/plugins/Realtime/realtimeupdate.css index f43c97de52..b277b30a14 100644 --- a/plugins/Realtime/realtimeupdate.css +++ b/plugins/Realtime/realtimeupdate.css @@ -35,7 +35,6 @@ width:70%; margin-left:1%; } - #notices_primary { position:relative; } @@ -75,4 +74,3 @@ line-height:1.2; #showstream #notices_primary { margin-top: 18px; } - From 5a9bb0adc4555bf67bb668edb587d4440cca61e5 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 2 Nov 2010 13:05:16 -0700 Subject: [PATCH 18/22] Tossing in a basic i18n message export to script code. Plugins can hook StartScriptMessage/EndScriptMessage, or directly add needed mappings in Action::getScriptMessages(). Exported entries are accessible as SN.msg(key) at runtime. StatusNet core code now sets the tooltip text on .attachment.more links when they receive their attachment-expansion magic; this will override the hardcoded tooltip text saved from OStatus plugin when displaying timelines in the web UI. --- js/util.js | 11 ++++- lib/action.php | 49 +++++++++++++++++++++ plugins/OStatus/classes/Ostatus_profile.php | 3 +- 3 files changed, 61 insertions(+), 2 deletions(-) diff --git a/js/util.js b/js/util.js index 1989e92c09..1be3f30535 100644 --- a/js/util.js +++ b/js/util.js @@ -56,6 +56,15 @@ var SN = { // StatusNet NoticeDataGeoCookie: 'NoticeDataGeo', NoticeDataGeoSelected: 'notice_data-geo_selected', StatusNetInstance:'StatusNetInstance' + }, + }, + + messages: {}, + msg: function(key) { + if (typeof SN.messages[key] == "undefined") { + return '[' + key + ']'; + } else { + return SN.messages[key]; } }, @@ -416,7 +425,7 @@ var SN = { // StatusNet }); return false; - }); + }).attr('title', SN.msg('showmore_tooltip')); } else { $.fn.jOverlay.options = { diff --git a/lib/action.php b/lib/action.php index 01bb0f7e92..becd734b10 100644 --- a/lib/action.php +++ b/lib/action.php @@ -283,6 +283,7 @@ class Action extends HTMLOutputter // lawsuit if (Event::handle('StartShowStatusNetScripts', array($this)) && Event::handle('StartShowLaconicaScripts', array($this))) { $this->script('util.js'); + $this->showScriptMessages(); // Frame-busting code to avoid clickjacking attacks. $this->inlineScript('if (window.top !== window.self) { window.top.location.href = window.self.location.href; }'); Event::handle('EndShowStatusNetScripts', array($this)); @@ -292,6 +293,54 @@ class Action extends HTMLOutputter // lawsuit } } + /** + * Exports a map of localized text strings to JavaScript code. + * + * Plugins can add to what's exported by hooking the StartScriptMessages or EndScriptMessages + * events and appending to the array. Try to avoid adding strings that won't be used, as + * they'll be added to HTML output. + */ + function showScriptMessages() + { + $messages = array(); + if (Event::handle('StartScriptMessages', array($this, &$messages))) { + // Common messages needed for timeline views etc... + + // TRANS: Localized tooltip for '...' expansion button on overlong remote messages. + $messages['showmore_tooltip'] = _m('TOOLTIP', 'Show more'); + + $messages = array_merge($messages, $this->getScriptMessages()); + } + if ($messages) { + $this->inlineScript('SN.messages=' . json_encode($messages)); + } + Event::handle('EndScriptMessages', array($this, &$messages)); + return $messages; + } + + /** + * If the action will need localizable text strings, export them here like so: + * + * return array('pool_deepend' => _('Deep end'), + * 'pool_shallow' => _('Shallow end')); + * + * The exported map will be available via SN.msg() to JS code: + * + * $('#pool').html('
    '); + * $('#pool .deepend').text(SN.msg('pool_deepend')); + * $('#pool .shallow').text(SN.msg('pool_shallow')); + * + * Exports a map of localized text strings to JavaScript code. + * + * Plugins can add to what's exported on any action by hooking the StartScriptMessages or + * EndScriptMessages events and appending to the array. Try to avoid adding strings that won't + * be used, as they'll be added to HTML output. + */ + function getScriptMessages() + { + return array(); + } + /** * Show OpenSearch headers * diff --git a/plugins/OStatus/classes/Ostatus_profile.php b/plugins/OStatus/classes/Ostatus_profile.php index 03fcb71df0..90bf671eb1 100644 --- a/plugins/OStatus/classes/Ostatus_profile.php +++ b/plugins/OStatus/classes/Ostatus_profile.php @@ -588,7 +588,8 @@ class Ostatus_profile extends Memcached_DataObject // We mark up the attachment link specially for the HTML output // so we can fold-out the full version inline. - // TRANS: Shown when a notice is longer than supported and/or when attachments are present. + // @fixme I18N this tooltip will be saved with the site's default language + // TRANS: Shown when a notice is longer than supported and/or when attachments are present. At runtime this will usually be replaced with localized text from StatusNet core messages. $showMoreText = _m('Show more'); $attachUrl = common_local_url('attachment', array('attachment' => $attachment->id)); From 86201761eadef3b124ee13e6ba2f9e661e697a5a Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 2 Nov 2010 13:12:58 -0700 Subject: [PATCH 19/22] Use SN.msg() and onEndScriptMessages() to export localized UI messages from Realtime plugin and its descendents. --- lib/action.php | 2 +- plugins/Realtime/RealtimePlugin.php | 40 +++++++++++++++-------------- plugins/Realtime/realtimeupdate.js | 13 +++++----- 3 files changed, 28 insertions(+), 27 deletions(-) diff --git a/lib/action.php b/lib/action.php index becd734b10..766cfca269 100644 --- a/lib/action.php +++ b/lib/action.php @@ -311,10 +311,10 @@ class Action extends HTMLOutputter // lawsuit $messages = array_merge($messages, $this->getScriptMessages()); } + Event::handle('EndScriptMessages', array($this, &$messages)); if ($messages) { $this->inlineScript('SN.messages=' . json_encode($messages)); } - Event::handle('EndScriptMessages', array($this, &$messages)); return $messages; } diff --git a/plugins/Realtime/RealtimePlugin.php b/plugins/Realtime/RealtimePlugin.php index 7a40cdca31..479e8cef2f 100644 --- a/plugins/Realtime/RealtimePlugin.php +++ b/plugins/Realtime/RealtimePlugin.php @@ -106,9 +106,7 @@ class RealtimePlugin extends Plugin $realtimeUI = ' RealtimeUpdate.initActions("'.$url.'", "'.$timeline.'", "'. $pluginPath .'");'; } - $i18n = $this->_getMessages(); $script = ' $(document).ready(function() { '. - 'RealtimeUpdate._messages=' . json_encode($i18n) . ';' . $realtimeUI. $this->_updateInitialize($timeline, $user_id). '}); '; @@ -329,25 +327,29 @@ class RealtimePlugin extends Plugin } /** - * Any i18n messages that need to be loaded at runtime. - * @return array of string key to output text string pairs + * Export any i18n messages that need to be loaded at runtime... + * + * @param Action $action + * @param array $messages + * + * @return boolean hook return value */ - function _getMessages() + function onEndScriptMessages($action, &$messages) { - return array( - // TRANS: Text label for realtime view "play" button, usually replaced by an icon. - 'play' => _m('BUTTON', 'Play'), - // TRANS: Tooltip for realtime view "play" button. - 'play_tooltip' => _m('TOOLTIP', 'Play'), - // TRANS: Text label for realtime view "pause" button - 'pause' => _m('BUTTON', 'Pause'), - // TRANS: Tooltip for realtime view "pause" button - 'pause_tooltip' => _m('TOOLTIP', 'Pause'), - // TRANS: Text label for realtime view "popup" button, usually replaced by an icon. - 'popup' => _m('BUTTON', 'Pop up'), - // TRANS: Tooltip for realtime view "popup" button. - 'popup_tooltip' => _m('TOOLTIP', 'Pop up in a window'), - ); + // TRANS: Text label for realtime view "play" button, usually replaced by an icon. + $messages['realtime_play'] = _m('BUTTON', 'Play'); + // TRANS: Tooltip for realtime view "play" button. + $messages['realtime_play_tooltip'] = _m('TOOLTIP', 'Play'); + // TRANS: Text label for realtime view "pause" button + $messages['realtime_pause'] = _m('BUTTON', 'Pause'); + // TRANS: Tooltip for realtime view "pause" button + $messages['realtime_pause_tooltip'] = _m('TOOLTIP', 'Pause'); + // TRANS: Text label for realtime view "popup" button, usually replaced by an icon. + $messages['realtime_popup'] = _m('BUTTON', 'Pop up'); + // TRANS: Tooltip for realtime view "popup" button. + $messages['realtime_popup_tooltip'] = _m('TOOLTIP', 'Pop up in a window'); + + return true; } function _updateInitialize($timeline, $user_id) diff --git a/plugins/Realtime/realtimeupdate.js b/plugins/Realtime/realtimeupdate.js index f764ca738d..f49cef95e6 100644 --- a/plugins/Realtime/realtimeupdate.js +++ b/plugins/Realtime/realtimeupdate.js @@ -40,7 +40,6 @@ RealtimeUpdate = { _documenttitle: '', _paused:false, _queuedNotices:[], - _messages:{}, init: function(userid, replyurl, favorurl, repeaturl, deleteurl) { @@ -263,8 +262,8 @@ RealtimeUpdate = { $('#realtime_playpause').remove(); $('#realtime_actions').prepend('
  • '); - $('#realtime_pause').text(RealtimeUpdate._messages['pause']) - .attr('title', RealtimeUpdate._messages['pause_tooltip']) + $('#realtime_pause').text(SN.msg('realtime_pause')) + .attr('title', SN.msg('realtime_pause_tooltip')) .bind('click', function() { RealtimeUpdate.removeNoticesHover(); RealtimeUpdate.showPlay(); @@ -277,8 +276,8 @@ RealtimeUpdate = { RealtimeUpdate.setPause(true); $('#realtime_playpause').remove(); $('#realtime_actions').prepend('
  • '); - $('#realtime_play').text(RealtimeUpdate._messages['play']) - .attr('title', RealtimeUpdate._messages['play_tooltip']) + $('#realtime_play').text(SN.msg('realtime_play')) + .attr('title', SN.msg('realtime_play_tooltip')) .bind('click', function() { RealtimeUpdate.showPause(); return false; @@ -338,8 +337,8 @@ RealtimeUpdate = { initAddPopup: function(url, timeline, path) { $('#realtime_timeline').append(''); - $('#realtime_popup').text(RealtimeUpdate._messages['popup']) - .attr('title', RealtimeUpdate._messages['popup_tooltip']) + $('#realtime_popup').text(SN.msg('realtime_popup')) + .attr('title', SN.msg('realtime_popup_tooltip')) .bind('click', function() { window.open(url, '', From 426cda5e1ffd365b6b8915e8d504c0a6672339d3 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 2 Nov 2010 13:42:33 -0700 Subject: [PATCH 20/22] Alternate pretty-title tweaks for #2668 --- actions/showstream.php | 10 ++++------ classes/Profile.php | 21 +++++++++++++++++++++ 2 files changed, 25 insertions(+), 6 deletions(-) diff --git a/actions/showstream.php b/actions/showstream.php index fb5b061fbe..de66bc415a 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -63,18 +63,16 @@ class ShowstreamAction extends ProfileAction function title() { - if (!empty($this->profile->fullname)) { - $base = $this->profile->fullname . ' (' . $this->user->nickname . ') '; - } else { - $base = $this->user->nickname; - } + $base = $this->profile->getFancyName(); if (!empty($this->tag)) { - $base .= sprintf(_(' tagged %s'), $this->tag); + // TRANS: Page title showing tagged notices in one user's stream. Param 1 is the username, 2 is the hash tag. + $base = sprintf(_('%1$s tagged %2$s'), $base, $this->tag); } if ($this->page == 1) { return $base; } else { + // TRANS: Extended page title showing tagged notices in one user's stream. Param 1 is the main title clause; 2 is the page number. return sprintf(_('%1$s, page %2$d'), $base, $this->page); diff --git a/classes/Profile.php b/classes/Profile.php index 37d2c571f9..064ba551c4 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -141,11 +141,32 @@ class Profile extends Memcached_DataObject return true; } + /** + * Gets either the full name (if filled) or the nickname. + * + * @return string + */ function getBestName() { return ($this->fullname) ? $this->fullname : $this->nickname; } + /** + * Gets the full name (if filled) with nickname as a parenthetical, or the nickname alone + * if no fullname is provided. + * + * @return string + */ + function getFancyName() + { + if ($this->fullname) { + // TRANS: Full name of a profile or group followed by nickname in parens + return sprintf(_('%1$s (%2$s)'), $this->fullname, $this->nickname); + } else { + return $this->nickname; + } + } + /** * Get the most recent notice posted by this user, if any. * From bc85f6914be97e1b44891153dc96045dfcefcaf6 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 2 Nov 2010 14:03:50 -0700 Subject: [PATCH 21/22] fix syntax error introduced in i18n tweaks: newgroup action --- actions/newgroup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/newgroup.php b/actions/newgroup.php index 9c1870b1c6..e0e7978c32 100644 --- a/actions/newgroup.php +++ b/actions/newgroup.php @@ -151,7 +151,7 @@ class NewgroupAction extends Action // TRANS: %d is the maximum number of allowed characters. $this->showForm(sprintf(_m('Description is too long (maximum %d character).', 'Description is too long (maximum %d characters).', - User_group::maxDescription(), + User_group::maxDescription()), User_group::maxDescription())); return; } else if (!is_null($location) && mb_strlen($location) > 255) { From 6a181bb12837f477dcaa13619024de2f984b7f20 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 2 Nov 2010 14:20:06 -0700 Subject: [PATCH 22/22] Unrolled tagged vs untagged, page 1 vs page N message variants for showstream title. #2668 --- actions/showstream.php | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/actions/showstream.php b/actions/showstream.php index de66bc415a..dd6c91b004 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -65,17 +65,22 @@ class ShowstreamAction extends ProfileAction { $base = $this->profile->getFancyName(); if (!empty($this->tag)) { - // TRANS: Page title showing tagged notices in one user's stream. Param 1 is the username, 2 is the hash tag. - $base = sprintf(_('%1$s tagged %2$s'), $base, $this->tag); - } - - if ($this->page == 1) { - return $base; + if ($this->page == 1) { + // TRANS: Page title showing tagged notices in one user's stream. Param 1 is the username, 2 is the hash tag. + return sprintf(_('%1$s tagged %2$s'), $base, $this->tag); + } else { + // TRANS: Page title showing tagged notices in one user's stream. Param 1 is the username, 2 is the hash tag, 3 is the page number. + return sprintf(_('%1$s tagged %2$s, page %3$d'), $base, $this->tag, $this->page); + } } else { - // TRANS: Extended page title showing tagged notices in one user's stream. Param 1 is the main title clause; 2 is the page number. - return sprintf(_('%1$s, page %2$d'), - $base, - $this->page); + if ($this->page == 1) { + return $base; + } else { + // TRANS: Extended page title showing tagged notices in one user's stream. Param 1 is the username, param 2 is the page number. + return sprintf(_('%1$s, page %2$d'), + $base, + $this->page); + } } }